public function indexAction()
 {
     $batch = $this->loader->getTaskRunnerBatch('export_data');
     $batch->reset();
     $this->data['survey'] = $this->request->getParam('survey');
     parent::indexAction();
 }
 /**
  * Action for showing a browse page
  */
 public function indexAction()
 {
     $lock = $this->util->getCronJobLock();
     if ($lock->isLocked()) {
         $this->addMessage(sprintf($this->_('Automatic mails have been turned off since %s.'), $lock->getLockTime()));
         $request = $this->getRequest();
         if ($menuItem = $this->menu->findController('cron', 'cron-lock')) {
             $menuItem->set('label', $this->_('Turn Automatic Mail Jobs ON'));
         }
     }
     parent::indexAction();
     $this->html->pInfo($this->_('With automatic mail jobs and a cron job on the server, mails can be sent without manual user action.'));
 }
 /**
  * Action for showing a browse page
  */
 public function indexAction()
 {
     parent::indexAction();
     $this->html->pInfo($this->getModel()->get('gapr_name', 'description'));
 }
 /**
  * Default overview action
  */
 public function indexAction()
 {
     if ($this->checkForAnswersOnLoad) {
         $this->loader->getTracker()->processCompletedTokens(null, $this->currentUser->getUserId(), $this->currentUser->getCurrentOrganizationId(), true);
     }
     parent::indexAction();
 }
    /**
     * Action for showing a browse page
     */
    public function indexAction()
    {
        parent::indexAction();
        $this->html->pInfo($this->_('A location is a combination of a geographic location and an organization.
 Two organizations sharing a geographic location still need a location item for each organization.'));
    }