コード例 #1
0
ファイル: reception.class.php プロジェクト: biet-j/order
 public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
 {
     if ($item->getType() == 'PluginOrderOrder') {
         if (Session::haveRight('plugin_order_order', PluginOrderOrder::canView()) && $item->getState() > PluginOrderOrderState::DRAFT) {
             return self::createTabEntry(__("Item delivered", "order"), self::countForOrder($item));
         }
     }
 }
コード例 #2
0
ファイル: order.class.php プロジェクト: pluginsGLPI/order
 public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
 {
     switch ($item->getType()) {
         case 'Budget':
             return __("Orders", "order");
         case __CLASS__:
             $ong = array();
             $config = PluginOrderConfig::getConfig();
             if (Session::haveRight("plugin_order_order", self::RIGHT_VALIDATION) || Session::haveRight("plugin_order_order", self::RIGHT_CANCEL) || Session::haveRight("plugin_order_order", self::RIGHT_UNDO_VALIDATION)) {
                 $ong[1] = __("Validation", "order");
             }
             if ($config->canGenerateOrderPDF() && ($item->getState() > PluginOrderOrderState::DRAFT || $this->canGenerateWithoutValidation())) {
                 // generation
                 $ong[2] = __("Purchase order", "order");
             }
             return $ong;
     }
 }
コード例 #3
0
ファイル: order.class.php プロジェクト: geldarr/hack-space
 function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
 {
     if ($item->getType() == 'Budget') {
         return __("Orders", "order");
     } else {
         if ($item->getType() == __CLASS__) {
             $ong = array();
             $config = PluginOrderConfig::getConfig();
             if (plugin_order_haveRight("validation", "w") || plugin_order_haveRight("cancel", "w") || plugin_order_haveRight("undo_validation", "w")) {
                 $ong[1] = __("Validation", "order");
             }
             if ($config->canGenerateOrderPDF() && $item->getState() > PluginOrderOrderState::DRAFT) {
                 // generation
                 $ong[2] = __("Order", "order");
             }
             return $ong;
         }
     }
 }