if (!defined('W2P_BASE_DIR')) { die('You should not access this file directly.'); } $company_id = (int) w2PgetParam($_GET, 'company_id', 0); // check permissions for this record $perms =& $AppUI->acl(); $canRead = $perms->checkModuleItem($m, 'view', $company_id); if (!$canRead) { $AppUI->redirect('m=public&a=access_denied'); } $canAdd = $perms->checkModuleItem($m, 'add'); $canEdit = $perms->checkModuleItem($m, 'edit', $company_id); $canDelete = $perms->checkModuleItem($m, 'delete', $company_id); $tab = $AppUI->processIntState('CompVwTab', $_GET, 'tab', 0); $company = new CCompany(); $company->loadFull($AppUI, $company_id); // check if this record has dependencies to prevent deletion $msg = ''; $deletable = $company->canDelete($msg, $company_id); // load the record data if (!$company) { $AppUI->setMsg('Company'); $AppUI->setMsg('invalidID', UI_MSG_ERROR, true); $AppUI->redirect(); } else { $AppUI->savePlace(); } // setup the title block $titleBlock = new CTitleBlock('View Company', 'handshake.png', $m, "{$m}.{$a}"); $titleBlock->addCell(); if ($canAdd) {