15 lines
369 B
PHP
15 lines
369 B
PHP
<?php
|
|
if (!defined('APP_INIT')) {
|
|
exit;
|
|
}
|
|
|
|
if (!$GLOBALS['modules_enabled']['customers']) {
|
|
echo '405 Not Allowed';
|
|
exit;
|
|
}
|
|
|
|
if (isset($_GET['view'])) {
|
|
include_once($_SERVER['DOCUMENT_ROOT'] . '/bin/pages/customers/pageCompanies_company_view.php');
|
|
} else {
|
|
include_once($_SERVER['DOCUMENT_ROOT'] . '/bin/pages/customers/pageCompanies_view.php');
|
|
} |