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


PHP CommonDBChild::showSpecificMassiveActionsParameters方法代碼示例

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


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

示例1: showSpecificMassiveActionsParameters

 /**
  * @since version 0.84
  *
  * @see CommonDBTM::showSpecificMassiveActionsParameters()
  **/
 function showSpecificMassiveActionsParameters($input = array())
 {
     global $CFG_GLPI;
     switch ($input['action']) {
         case "give":
             if (isset($input["entities_id"])) {
                 Dropdown::showAllItems("give_items_id", 0, 0, $input["entities_id"], $CFG_GLPI["consumables_types"], false, false, 'give_itemtype');
                 echo "<br><br><input type='submit' class='submit' name='massiveaction' value='" . _sx('button', 'Give') . "'>";
                 return true;
             }
         default:
             return parent::showSpecificMassiveActionsParameters($input);
     }
     return false;
 }
開發者ID:geldarr,項目名稱:hack-space,代碼行數:20,代碼來源:consumable.class.php

示例2: showSpecificMassiveActionsParameters

 /**
  * @see CommonDBTM::showSpecificMassiveActionsParameters()
  **/
 function showSpecificMassiveActionsParameters($input = array())
 {
     switch ($input['action']) {
         case "assign_vlan":
             Vlan::dropdown();
             echo "&nbsp;" . __('Tagged') . "&nbsp;<input type='checkbox' name='tagged' value='1'>";
             echo "&nbsp;<input type='submit' name='assign_vlan' class='submit' value='" . __s('Associate') . "'>";
             return true;
         case "unassign_vlan":
             Vlan::dropdown();
             echo "&nbsp;<input type='submit' name='unassign_vlan' class='submit' value='" . __s('Dissociate') . "'>";
             return true;
         case "move_port":
             Dropdown::show('NetworkEquipment', array('name' => 'items_id'));
             echo "&nbsp;<input type='submit' name='move' class='submit' value=\"" . __s('Move') . "\">";
             return true;
         default:
             return parent::showSpecificMassiveActionsParameters($input);
     }
     return false;
 }
開發者ID:gaforeror,項目名稱:glpi,代碼行數:24,代碼來源:networkport.class.php

示例3: showSpecificMassiveActionsParameters

 /**
  * @see CommonDBTM::showSpecificMassiveActionsParameters()
  **/
 function showSpecificMassiveActionsParameters($input = array())
 {
     switch ($input['action']) {
         case "transform_to":
             Dropdown::showItemTypes('transform_to', NetworkPort::getNetworkPortInstantiations(), array('value' => 'NetworkPortEthernet'));
             echo "<br><br><input type='submit' name='massiveaction' class='submit' value='" . _sx('button', 'Save') . "'>";
             return true;
         default:
             return parent::showSpecificMassiveActionsParameters($input);
     }
     return false;
 }
開發者ID:geldarr,項目名稱:hack-space,代碼行數:15,代碼來源:networkportmigration.class.php


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