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


PHP Helper::statusTypeList方法代碼示例

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


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

示例1: getCreate

 /**
  * Statuslabel create.
  *
  * @return View
  */
 public function getCreate()
 {
     // Show the page
     $statuslabel = new Statuslabel();
     $use_statuslabel_type = $statuslabel->getStatuslabelType();
     $statuslabel_types = Helper::statusTypeList();
     return View::make('statuslabels/edit', compact('statuslabel_types', 'statuslabel'))->with('use_statuslabel_type', $use_statuslabel_type);
 }
開發者ID:stijni,項目名稱:snipe-it,代碼行數:13,代碼來源:StatuslabelsController.php

示例2: getClone

 /**
  * Returns a view that presents a form to clone an asset.
  *
  * @author [A. Gianotto] [<snipe@snipe.net>]
  * @param int $assetId
  * @since [v1.0]
  * @return View
  */
 public function getClone($assetId = null)
 {
     // Check if the asset exists
     if (is_null($asset_to_clone = Asset::find($assetId))) {
         // Redirect to the asset management page
         return redirect()->to('hardware')->with('error', trans('admin/hardware/message.does_not_exist'));
     } elseif (!Company::isCurrentUserHasAccess($asset_to_clone)) {
         return redirect()->to('hardware')->with('error', trans('general.insufficient_permissions'));
     }
     // Grab the dropdown lists
     $model_list = Helper::modelList();
     $statuslabel_list = Helper::statusLabelList();
     $location_list = Helper::locationsList();
     $manufacturer_list = Helper::manufacturerList();
     $category_list = Helper::categoryList('asset');
     $supplier_list = Helper::suppliersList();
     $assigned_to = Helper::usersList();
     $statuslabel_types = Helper::statusTypeList();
     $company_list = Helper::companyList();
     $asset = clone $asset_to_clone;
     $asset->id = null;
     $asset->asset_tag = '';
     $asset->serial = '';
     $asset->assigned_to = '';
     return View::make('hardware/edit')->with('supplier_list', $supplier_list)->with('model_list', $model_list)->with('statuslabel_list', $statuslabel_list)->with('statuslabel_types', $statuslabel_types)->with('assigned_to', $assigned_to)->with('asset', $asset)->with('location_list', $location_list)->with('manufacturer', $manufacturer_list)->with('category', $category_list)->with('company_list', $company_list);
 }
開發者ID:stijni,項目名稱:snipe-it,代碼行數:34,代碼來源:AssetsController.php


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