本文整理汇总了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;
}
示例2: showSpecificMassiveActionsParameters
/**
* @see CommonDBTM::showSpecificMassiveActionsParameters()
**/
function showSpecificMassiveActionsParameters($input = array())
{
switch ($input['action']) {
case "assign_vlan":
Vlan::dropdown();
echo " " . __('Tagged') . " <input type='checkbox' name='tagged' value='1'>";
echo " <input type='submit' name='assign_vlan' class='submit' value='" . __s('Associate') . "'>";
return true;
case "unassign_vlan":
Vlan::dropdown();
echo " <input type='submit' name='unassign_vlan' class='submit' value='" . __s('Dissociate') . "'>";
return true;
case "move_port":
Dropdown::show('NetworkEquipment', array('name' => 'items_id'));
echo " <input type='submit' name='move' class='submit' value=\"" . __s('Move') . "\">";
return true;
default:
return parent::showSpecificMassiveActionsParameters($input);
}
return false;
}
示例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;
}