本文整理汇总了PHP中Printer::getTypeName方法的典型用法代码示例。如果您正苦于以下问题:PHP Printer::getTypeName方法的具体用法?PHP Printer::getTypeName怎么用?PHP Printer::getTypeName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Printer
的用法示例。
在下文中一共展示了Printer::getTypeName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getSearchOptions
/**
* Get search function for the class
*
* @since version 0.85
*
* @return array of search option
**/
function getSearchOptions()
{
$tab = parent::getSearchOptions();
$tab[21]['table'] = $this->getTable();
$tab[21]['field'] = 'is_visible_computer';
$tab[21]['name'] = sprintf(__('%1$s - %2$s'), __('Visibility'), Computer::getTypeName(Session::getPluralNumber()));
$tab[21]['datatype'] = 'bool';
$tab[22]['table'] = $this->getTable();
$tab[22]['field'] = 'is_visible_softwareversion';
$tab[22]['name'] = sprintf(__('%1$s - %2$s'), __('Visibility'), SoftwareVersion::getTypeName(Session::getPluralNumber()));
$tab[22]['datatype'] = 'bool';
$tab[23]['table'] = $this->getTable();
$tab[23]['field'] = 'is_visible_monitor';
$tab[23]['name'] = sprintf(__('%1$s - %2$s'), __('Visibility'), Monitor::getTypeName(Session::getPluralNumber()));
$tab[23]['datatype'] = 'bool';
$tab[24]['table'] = $this->getTable();
$tab[24]['field'] = 'is_visible_printer';
$tab[24]['name'] = sprintf(__('%1$s - %2$s'), __('Visibility'), Printer::getTypeName(Session::getPluralNumber()));
$tab[24]['datatype'] = 'bool';
$tab[25]['table'] = $this->getTable();
$tab[25]['field'] = 'is_visible_peripheral';
$tab[25]['name'] = sprintf(__('%1$s - %2$s'), __('Visibility'), Peripheral::getTypeName(Session::getPluralNumber()));
$tab[25]['datatype'] = 'bool';
$tab[26]['table'] = $this->getTable();
$tab[26]['field'] = 'is_visible_phone';
$tab[26]['name'] = sprintf(__('%1$s - %2$s'), __('Visibility'), Phone::getTypeName(Session::getPluralNumber()));
$tab[26]['datatype'] = 'bool';
$tab[27]['table'] = $this->getTable();
$tab[27]['field'] = 'is_visible_networkequipment';
$tab[27]['name'] = sprintf(__('%1$s - %2$s'), __('Visibility'), NetworkEquipment::getTypeName(Session::getPluralNumber()));
$tab[27]['datatype'] = 'bool';
return $tab;
}
示例2: Copyright
Copyright (C) 2003-2014 by the INDEPNET Development Team.
http://indepnet.net/ http://glpi-project.org
-------------------------------------------------------------------------
LICENSE
This file is part of GLPI.
GLPI is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
GLPI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GLPI. If not, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/
/** @file
* @brief
*/
include '../inc/includes.php';
Session::checkRight("printer", "r");
Html::header(Printer::getTypeName(2), $_SERVER['PHP_SELF'], "inventory", "printer");
Search::show('Printer');
Html::footer();
示例3: sprintf
$print->restore($_POST);
Event::log($_POST["id"], "printers", 4, "inventory", sprintf(__('%s restores an item'), $_SESSION["glpiname"]));
$print->redirectToList();
} else {
if (isset($_POST["purge"])) {
$print->check($_POST["id"], PURGE);
$print->delete($_POST, 1);
Event::log($_POST["id"], "printers", 4, "inventory", sprintf(__('%s purges an item'), $_SESSION["glpiname"]));
$print->redirectToList();
} else {
if (isset($_POST["update"])) {
$print->check($_POST["id"], UPDATE);
$print->update($_POST);
Event::log($_POST["id"], "printers", 4, "inventory", sprintf(__('%s updates an item'), $_SESSION["glpiname"]));
Html::back();
} else {
if (isset($_POST["unglobalize"])) {
$print->check($_POST["id"], UPDATE);
Computer_Item::unglobalizeItem($print);
Event::log($_POST["id"], "printers", 4, "inventory", sprintf(__('%s sets unitary management'), $_SESSION["glpiname"]));
Html::redirect($CFG_GLPI["root_doc"] . "/front/printer.form.php?id=" . $_POST["id"]);
} else {
Html::header(Printer::getTypeName(Session::getPluralNumber()), $_SERVER['PHP_SELF'], "assets", "printer");
$print->display(array('id' => $_GET["id"], 'withtemplate' => $_GET["withtemplate"]));
Html::footer();
}
}
}
}
}
}
示例4: task_definitiontype_networkinventory
static function task_definitiontype_networkinventory($a_itemtype)
{
$a_itemtype['PluginFusioninventoryIPRange'] = __('IP Ranges', 'fusioninventory');
$a_itemtype['NetworkEquipment'] = NetworkEquipment::getTypeName();
$a_itemtype['Printer'] = Printer::getTypeName();
return $a_itemtype;
}