예제 #1
0
 function check()
 {
     $res = parent::check();
     if (!$res) {
         return false;
     }
     $this->aBreadcrumbs[] = array('url' => $_SERVER['PHP_SELF'], 'name' => _kt('Automatic Workflow Assignments'));
     return true;
 }
예제 #2
0
 function check()
 {
     $this->aBreadcrumbs[] = array('url' => $_SERVER['PHP_SELF'], 'name' => _kt('Manage Mime Types'));
     return parent::check();
 }
예제 #3
0
 function check()
 {
     return parent::check();
 }
예제 #4
0
 function check()
 {
     $this->aBreadcrumbs[] = array('url' => $_SERVER['PHP_SELF'], 'name' => _kt('Extractor Information'));
     return parent::check();
 }
 function check()
 {
     $res = parent::check();
     $this->aBreadcrumbs[] = array('name' => _kt('Authentication'), 'url' => $_SERVER['PHP_SELF']);
     return $res;
 }
예제 #6
0
 function check()
 {
     $this->aBreadcrumbs[] = array('url' => $_SERVER['PHP_SELF'], 'name' => _kt('Document Indexing Diagnostics'));
     return parent::check();
 }
예제 #7
0
 function check()
 {
     $this->aBreadcrumbs[] = array('url' => $_SERVER['PHP_SELF'], 'name' => _kt('Pending Documents Indexing Queue'));
     return parent::check();
 }
예제 #8
0
 function check()
 {
     $this->aBreadcrumbs[] = array('url' => $_SERVER['PHP_SELF'], 'name' => _kt('Reschedule all documents'));
     return parent::check();
 }
예제 #9
0
 function check()
 {
     $res = parent::check();
     if (!$res) {
         return false;
     }
     $sQuery = 'SELECT selection_ns FROM ' . KTUtil::getTableName('trigger_selection');
     $sQuery .= ' WHERE event_ns = ?';
     $aParams = array('ktstandard.workflowassociation.handler');
     $res = DBUtil::getOneResultKey(array($sQuery, $aParams), 'selection_ns');
     if ($res != 'ktstandard.triggers.workflowassociation.documenttype.handler') {
         return false;
     }
     $this->aBreadcrumbs[] = array('url' => $_SERVER['PHP_SELF'], 'name' => _kt('Workflow Allocation by Document Types'));
     return true;
 }