本文整理汇总了PHP中EmployeeService::getSubordinateListForEmployee方法的典型用法代码示例。如果您正苦于以下问题:PHP EmployeeService::getSubordinateListForEmployee方法的具体用法?PHP EmployeeService::getSubordinateListForEmployee怎么用?PHP EmployeeService::getSubordinateListForEmployee使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EmployeeService
的用法示例。
在下文中一共展示了EmployeeService::getSubordinateListForEmployee方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
public function execute($request)
{
$jsonArray = array();
$employeeService = new EmployeeService();
$employeeService->setEmployeeDao(new EmployeeDao());
$employeeList = $employeeService->getSubordinateListForEmployee($request->getGetParameter('id'));
foreach ($employeeList as $subordinate) {
$employee = $subordinate->getSubordinate();
$name = $employee->getFirstName() . " " . $employee->getMiddleName();
$name = trim(trim($name) . " " . $employee->getLastName());
$jsonArray[] = array('name' => $name, 'id' => $employee->getEmpNumber());
}
$jsonString = json_encode($jsonArray);
echo $jsonString;
exit;
}
示例2: searchTimesheetItems
/**
*
* @param array/Integer $employeeIds
* @param date $dateFrom
* @param date $dateTo
* @param int $subDivision
* @param String $employeementStatus
* @return array
*/
public function searchTimesheetItems($employeeIds = null, $employeementStatus = null, $subDivision = null, $supervisorId = null, $dateFrom = null, $dateTo = null)
{
if (!is_array($employeeIds) && $employeeIds != null) {
$employeeIds = array($employeeIds);
}
$employeeService = new EmployeeService();
$subordinates = $employeeService->getSubordinateListForEmployee($supervisorId);
$supervisorIds = array();
foreach ($subordinates as $subordinate) {
$supervisorIds[] = $subordinate->getSubordinateId();
}
return $this->getTimesheetDao()->searchTimesheetItems($employeeIds, $employeementStatus, $supervisorIds, $subDivision, $dateFrom, $dateTo);
}
示例3: getSubordinateListAsJson
/**
*
* @return json string
*/
public function getSubordinateListAsJson()
{
$jsonArray = array();
$employeeService = new EmployeeService();
$employeeService->setEmployeeDao(new EmployeeDao());
$employeeList = $employeeService->getSubordinateListForEmployee();
foreach ($employeeList as $employee) {
$name = $employee->getFirstName() . " " . $employee->getMiddleName();
$name = trim(trim($name) . " " . $employee->getLastName());
$jsonArray[] = array('name' => $name, 'id' => $employee->getEmpNumber());
}
$jsonString = json_encode($jsonArray);
return $jsonString;
}