9 lines
278 B
PHP
9 lines
278 B
PHP
<?php
|
|
if (!defined('APP_INIT')) {
|
|
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');
|
|
} |