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


PHP Constants::get_create_department方法代碼示例

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


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

示例1: action_index

 /**
  * @author Thuanth6589 <thuanth6589@seta-asia.com.vn>
  * action create/edit user
  * @return mixed
  */
 public function action_index()
 {
     $data = array();
     $user_id = Input::get('user_id');
     if (isset($user_id)) {
         $data['user'] = \Model_Muser::find_by_pk($user_id);
         if (!isset($data['user'])) {
             Session::set_flash('error', 'ユーザが存在しません');
             return Response::redirect('/master/users');
         }
     }
     if (Input::method() == 'POST') {
         $url = Session::get('users_url') ? Session::get('users_url') : Uri::base() . 'master/users';
         $user_id = Input::post('user_id', null);
         if ($user_id && !\Model_Muser::find_by_pk($user_id)) {
             Session::set_flash('success', 'ユーザーは存在しません');
             return Response::redirect($url);
         }
         $user = new \Model_Muser();
         $fields = $user->set_data(Input::post());
         $check = $user->validate_unique_login_id($fields['login_id'], isset($fields['user_id']) ? $fields['user_id'] : null);
         if ($check && $user->save_data($fields)) {
             Session::set_flash('success', \Constants::$message_create_success);
             return Response::redirect($url);
         }
         $message = \Constants::$message_create_error;
         if (!$check) {
             $message = '入力したIDは既存に存在してます。';
         }
         Session::set_flash('error', $message);
     }
     $data['department'] = \Constants::get_create_department();
     $this->template->title = 'UOS求人システム';
     $this->template->content = View::forge('user', $data);
 }
開發者ID:huylv-hust,項目名稱:uosbo,代碼行數:40,代碼來源:user.php

示例2: isset

?>
 disabled">
				<?php 
echo Fuel\Core\Form::select('department_id_edit', isset($edit_partner) ? $edit_partner->department_id : '', Constants::get_create_department(), array('class' => 'form-control', 'disabled'));
?>
			</div>

		</td>
	</tr>

	<tr>
		<th class="text-right">擔當営業</th>
		<td>
			<?php 
//Get array department
$department = \Constants::get_create_department();
$user_id = '';
$arr_user = array();
$department_id = '';
if (isset($partner->user_id)) {
    $user_id = $partner->user_id;
    $department_id = Model_Mpartner::get_department_user($user_id);
    $arr_user = Model_Mpartner::get_filter_user_department($department_id);
    $arr_user = array_column($arr_user, 'name', 'user_id');
}
echo Fuel\Core\Form::select('department', $department_id, $department, array('class' => 'form-control'));
echo ' - ';
echo Fuel\Core\Form::select('user_id', $user_id, array('' => '擔當者を選択してください') + $arr_user, array('class' => 'form-control'));
?>
			<span class="text-info text-info-userid">※受注先の場合必須</span>
			<label id="form_user_id-error" class="error" for="form_user_id"></label>
開發者ID:huylv-hust,項目名稱:uosbo,代碼行數:31,代碼來源:index.php


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