<?php if (!defined('W2P_BASE_DIR')) { die('You should not access this file directly.'); } // @todo convert to template $object_id = (int) w2PgetParam($_GET, 'contact_id', 0); $company_id = (int) w2PgetParam($_GET, 'company_id', 0); $dept_id = (int) w2PgetParam($_GET, 'dept_id', 0); $object = new CContact(); $object->setId($object_id); $canAddEdit = $object->canAddEdit(); $canAuthor = $object->canCreate(); $canEdit = $object->canEdit(); $canDelete = $object->canDelete(); if (!$canAddEdit) { $AppUI->redirect(ACCESS_DENIED); } // load the record data $obj = $AppUI->restoreObject(); if ($obj) { $object = $obj; $object_id = $object->getId(); } else { $object->load($object_id); } if (!$object && $object_id > 0) { $AppUI->setMsg('Contact'); $AppUI->setMsg('invalidID', UI_MSG_ERROR, true); $AppUI->redirect('m=' . $m); }