本文整理匯總了PHP中CCompany::loadAll方法的典型用法代碼示例。如果您正苦於以下問題:PHP CCompany::loadAll方法的具體用法?PHP CCompany::loadAll怎麽用?PHP CCompany::loadAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CCompany
的用法示例。
在下文中一共展示了CCompany::loadAll方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: die
if (!defined('W2P_BASE_DIR')) {
die('You should not access this file directly.');
}
$project_id = (int) w2PgetParam($_REQUEST, 'project_id', 0);
$report_type = w2PgetParam($_REQUEST, 'report_type', '');
$canReport = canView('reports');
$canRead = canView('projects', $project_id);
if (!$canReport || !$canRead) {
$AppUI->redirect(ACCESS_DENIED);
}
$project_list = array('0' => $AppUI->_('All', UI_OUTPUT_RAW));
$projectObj = new CProject();
$projectList = $projectObj->getAllowedProjects($AppUI->user_id, false);
$company = new CCompany();
$companyList = $company->loadAll();
foreach ($projectList as $pr) {
if ($pr['project_id'] == $project_id) {
$display_project_name = '(' . $companyList[$pr['project_company']]['company_name'] . ') ' . $pr['project_name'];
}
$project_list[$pr['project_id']] = '(' . $companyList[$pr['project_company']]['company_name'] . ') ' . $pr['project_name'];
}
// get the prefered date format
$df = $AppUI->getPref('SHDATEFORMAT');
$loader = new w2p_FileSystem_Loader();
$reports = $loader->readFiles(W2P_BASE_DIR . '/modules/reports/reports', '\\.php$');
// setup the title block
if (!$suppressHeaders) {
$titleBlock = new w2p_Theme_TitleBlock('Reports', 'icon.png', $m);
$titleBlock->addCrumb('?m=projects', 'projects list');
if ($project_id) {