當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Department::getList方法代碼示例

本文整理匯總了PHP中Department::getList方法的典型用法代碼示例。如果您正苦於以下問題:PHP Department::getList方法的具體用法?PHP Department::getList怎麽用?PHP Department::getList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Department的用法示例。


在下文中一共展示了Department::getList方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Project

<?php

$waitcount = 0;
$waitshow = 0;
$role = $_SESSION['role'];
$level = $_SESSION['level'];
$project = new Project();
$search = new ProjectSearch();
$btnverifyshow = 0;
//部門列表
$dept = new Department();
$deptData = $dept->getList();
$departmentList = $deptData['Data'];
if ($role == 1 && $level == 3) {
    $search->Department = $_SESSION['department'];
    $search->Status = 1;
    $waitcount = $project->getWaitVerifyCount($search);
    $waitshow = 1;
} else {
    if ($role == 2 && $level == 3) {
        $search->Status = 2;
        $waitcount = $project->getWaitVerifyCount($search);
        $waitshow = 1;
        $btnverifyshow = 1;
    }
}
$currentuser = $_SESSION['username'];
開發者ID:xuyintao,項目名稱:thindev,代碼行數:27,代碼來源:header_public.php

示例2: array

echo $form->dropDownList($model, 'company_id', Company::getList(), array('ajax' => array('type' => 'POST', 'url' => CController::createUrl('person/getdepartments'), 'update' => '#Person_department_id')));
?>
		<?php 
echo $form->error($model, 'company_id');
?>
	</div>
        
        <div class="row">
		<?php 
echo $form->labelEx($model, 'department_id');
?>
		<?php 
if (empty($model->department_id)) {
    echo $form->dropDownList($model, 'department_id', array(null => 'Сначала выбери организацию'));
} else {
    echo $form->dropDownList($model, 'department_id', Department::getList());
}
?>
		<?php 
echo $form->error($model, 'department_id');
?>
	</div>

	<div class="row">
		<?php 
echo $form->labelEx($model, 'user_id');
?>
		<?php 
echo $form->dropDownList($model, 'user_id', User::getList());
?>
		<?php 
開發者ID:griffindor,項目名稱:own-inventory,代碼行數:31,代碼來源:_form.php


注:本文中的Department::getList方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。