static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0)
 {
     if ($item->getType() == __CLASS__) {
         if ($tabnum == 0) {
             $item->showReport($_GET);
         }
     }
     return true;
 }
Пример #2
0
 static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0)
 {
     if ($item->getType() == __CLASS__) {
         $item->linkToExport($item->getField('id'));
         $item->showReport($_POST);
     }
     return true;
 }