コード例 #1
0
 public function beforeQuery()
 {
     $tagId = (int) $this->getProperty('tagId');
     if (empty($tagId) || $tagId == 0) {
         return $this->modx->lexicon('tagger.err.tag_assigned_resources_tag_ns');
     }
     return parent::beforeQuery();
 }
コード例 #2
0
ファイル: load.class.php プロジェクト: jolichter/modxTalks
 public function beforeQuery()
 {
     if ($this->modx->modxtalks->config['commentsPerPage'] != 0) {
         $this->limit = $this->modx->modxtalks->config['commentsPerPage'];
     }
     $this->conversation = (string) $this->getProperty('conversation');
     $this->revers = $this->modx->modxtalks->getRevers();
     $this->context = $this->modx->modxtalks->getContext();
     /**
      * Check Conversation
      */
     if (!($this->theme = $this->modx->modxtalks->getConversation($this->conversation))) {
         $this->failure($this->modx->lexicon('modxtalks.empty_conversationId'));
         return false;
     }
     $this->conversationId = $this->theme->id;
     return parent::beforeQuery();
 }