Lines Matching refs:helper

29     private helper_plugin_newsfeed $helper;  variable in action_plugin_newsfeed
32 $this->helper = $this->loadHelper('newsfeed');
114 $news = $this->helper->serviceNews->getById($newsId);
116 $this->helper->openGraphData->addMetaData('og', 'title', $news->title);
117 $this->helper->openGraphData->addMetaData('og', 'url', $news->getToken($ID));
119 $this->helper->openGraphData->addMetaData('og', 'description', $text);
121 … $this->helper->openGraphData->addMetaData('og', 'image', ml($news->image, null, true, '&', true));
127 $stream = $this->helper->serviceStream->findByName($streamId);
166 $this->helper->serviceNews->create($data);
167 … $this->saveIntoStreams($this->helper->serviceNews->getMaxId(), $INPUT->param('news')['stream']);
169 $news = $this->helper->serviceNews->getById($INPUT->param('news')['id']);
170 $this->helper->serviceNews->update($news, $data);
177 $stream = $this->helper->serviceStream->findByName($streamName);
180 $this->helper->fullParentDependence($stream->streamId, $streams);
183 $this->helper->servicePriority->store($newsId, $stream);
193 $stream = $this->helper->serviceStream->findByName($INPUT->param('news')['stream']);
195 …$priority = $this->helper->servicePriority->findByNewsAndStream($INPUT->param('news')['id'], $stre…
197 $this->helper->servicePriority->update($priority, [
208 $stream = $this->helper->serviceStream->findByName($INPUT->param('news')['stream']);
209 …$priority = $this->helper->servicePriority->findByNewsAndStream($INPUT->param('news')['id'], $stre…
218 $news = $this->helper->serviceNews->getAll();
249 $data = $this->helper->serviceNews->getById($INPUT->param('news')['id']);
251 $data = new ModelNews($this->helper->sqlite);