Пример #1
0
 /**
  * Initialize controller.
  */
 public function init()
 {
     parent::init();
     $this->_facetMenu = new Solrsearch_Model_FacetMenu();
     $this->_helper->mainMenu('search');
     // activate entry in main menu
 }
 public function init()
 {
     parent::init();
     $client = PR_Session::getSession(PR_Session::SESSION_USER);
     if (empty($client)) {
         $this->_helper->redirector("index", "login");
     }
 }
 public function init()
 {
     parent::init();
     // $client = PR_Session::getSession(PR_Session::SESSION_CLIENT);
     $user = PR_Session::getSession(PR_Session::SESSION_USER);
     //echo("user");print_r($user);
     if (empty($user)) {
         $this->_helper->redirector("index", "login");
     }
 }
Пример #4
0
 /**
  * Setup module.  Check privileges.
  */
 public function init()
 {
     parent::init();
     // Highlight menu entries.
     if (true === Opus_Security_Realm::getInstance()->checkModule('admin')) {
         $this->getHelper('MainMenu')->setActive('admin');
     } else {
         $this->getHelper('MainMenu')->setActive('review');
     }
     $this->_loggedUser = new Publish_Model_LoggedUser();
     $this->view->title = $this->view->translate('review_index_title');
 }
 public function init()
 {
     parent::init();
     $user = CS_Session::getSession();
     if ($this->view->ajax == 1 && empty($user)) {
         $this->_helper->json(array('logined' => 0));
     } else {
         if (empty($user)) {
             $this->_helper->redirector("index", "login");
         }
     }
 }
 /**
  * Initializes controller.
  */
 public function init()
 {
     parent::init();
     $this->_documentsHelper = $this->_helper->getHelper('Documents');
     $this->_workflowHelper = $this->_helper->getHelper('Workflow');
     $config = $this->getConfig();
     if (isset($config->confirmation->document->statechange->enabled)) {
         $this->_confirmChanges = $config->confirmation->document->statechange->enabled == 1 ? true : false;
     } else {
         $this->_confirmChanges = true;
     }
 }
 public function init()
 {
     parent::init();
     $client = PR_Session::getSession(PR_Session::SESSION_USER);
     if ($this->view->ajax == 1 && empty($client)) {
         $this->_helper->json(array('logined' => 0));
     } else {
         if (empty($client)) {
             // $this->_helper->redirector("index", "login");
             $this->_helper->redirector("index", "star");
         }
     }
 }
 public function init()
 {
     parent::init();
     $this->_model = new Admin_Model_IndexMaintenance($this->getLogger());
     // TODO features will be enabled in later version
     $this->view->disabledFeatureFulltextExtractionCheck = true;
     // TODO OPUSVIER-2955
     $this->view->disabledFeatureIndexOptimization = true;
     // TODO OPUSVIER-2956
     if ($this->_model->getFeatureDisabled()) {
         $this->view->featureDisabled = true;
     } else {
         $this->view->allowConsistencyCheck = $this->_model->allowConsistencyCheck();
         $this->view->allowFulltextExtractionCheck = $this->_model->allowFulltextExtractionCheck();
         $this->view->allowIndexOptimization = $this->_model->allowIndexOptimization();
     }
 }
 public function init()
 {
     parent::init();
     $config = $this->getConfig();
     if (isset($config->admin->documents->linkToAuthorSearch)) {
         $this->view->linkToAuthorSearch = $config->admin->documents->linkToAuthorSearch;
     } else {
         $this->view->linkToAuthorSearch = 0;
     }
     if (isset($config->admin->documents->maxDocsDefault)) {
         $this->_maxDocsDefault = $config->admin->documents->maxDocsDefault;
     } else {
         $this->_maxDocsDefault = 10;
     }
     if (isset($config->admin->documents->defaultview)) {
         $default = $config->admin->documents->defaultview;
         if (!in_array($default, $this->_docOptions)) {
             $this->getLogger()->err("Option 'admin.documents.defaultview' hat ungegueltigen Wert '{$default}'.");
         }
         $this->_stateOptionDefault = $default;
     }
 }
Пример #10
0
 public function init()
 {
     parent::init();
     $this->_documentTypesHelper = Zend_Controller_Action_HelperBroker::getStaticHelper('DocumentTypes');
 }
 public function init()
 {
     parent::init();
     $this->getHelper('MainMenu')->setActive('publish');
 }
Пример #12
0
 /**
  * Initializes common controller variables.
  */
 public function init()
 {
     parent::init();
     $this->_exportHelper = new CitationExport_Model_Helper($this->view->fullUrl(), $this->view->getScriptPath('index'));
     $this->view->title = $this->view->translate('citationExport_modulename');
 }
Пример #13
0
 /**
  * Initialisiert den Controller.
  */
 public function init()
 {
     parent::init();
     $this->loadDefaultMessages();
 }
 /**
  * Initializes controller.
  */
 public function init()
 {
     parent::init();
     $this->_documentsHelper = $this->_helper->getHelper('Documents');
 }
 public function init()
 {
     parent::init();
     $this->_statisticsModel = new Admin_Model_Statistics();
 }
Пример #16
0
 public function init()
 {
     $this->session = new Zend_Session_Namespace('Publish');
     parent::init();
 }
Пример #17
0
 public function init()
 {
     parent::init();
     //$this->_helper->_layout->setLayout('login');
 }
 /**
  * Setup theme path
  *
  * @return void
  */
 public function init()
 {
     parent::init();
 }
Пример #19
0
 public function init()
 {
     parent::init();
     $this->_helper->mainMenu('browsing');
     $this->seriesUtil = new Solrsearch_Model_SeriesUtil();
 }