/plugin/fksnewsfeed/inc/renderer/ |
H A D | VyfukRenderer.php | 29 protected function getHeader(ModelNews $news) { argument 30 return '<h4 class="card-title">' . $news->title . '</h4>' . 170 protected function getText(ModelNews $news) { argument 171 return $news->renderText(); 178 protected function getSignature(ModelNews $news) { argument 180 … <a href="mailto:' . hsc($news->authorEmail) . '" class="mail" title="' . hsc($news->authorEmail) . 189 protected function getLink(ModelNews $news) { argument 190 if ($news->hasLink()) { 191 if (preg_match('|^https?://|', $news->linkHref)) { 192 $href = hsc($news->linkHref); [all …]
|
H A D | FykosRenderer.php | 150 protected function getText(ModelNews $news): ?string { argument 151 return $news->renderText(); 154 protected function getSignature(ModelNews $news): string { argument 156 …'<a href="mailto:' . hsc($news->authorEmail) . '" class="mail" title="' . hsc($news->authorEmail) . 161 protected function getHeader(ModelNews $news): string { argument 162 return '<h4>' . $news->title . 168 protected function getLink(ModelNews $news): string { argument 169 if ($news->hasLink()) { 170 if (preg_match('|^https?://|', $news->linkHref)) { 171 $href = hsc($news->linkHref); [all …]
|
H A D | AbstractRenderer.php | 24 abstract public function render(string $innerHtml, string $formHtml, ModelNews $news): string; argument
|
/plugin/news/ |
H A D | README | 3 This plugin will generate a news feed that can be read in a standard news reader (See below for how… 16 <news: item_title> 18 </news> 20 <news: another_item> 22 </news> 24 The news reader will use your title for the item. You can omit the title: 26 <news> 28 </news> 46 Each of the following methods generates an xml news feed in your top level dokuwiki directory. Th… 49 The main file for generating news feeds is newsfeed.php, which is found in news/scripts. [all …]
|
H A D | plugin.info.txt | 1 base news 5 name news 6 desc news feed generator 7 url http://www.dokuwiki.org/plugin:news
|
/plugin/fksnewsfeed/ |
H A D | script.js | 20 news: { 45 index += data.html.news.length; 46 if (!data.html.news.length) { 49 data.html.news.forEach((news) => { 50 newsContainer.innerHTML += news;
|
H A D | action.php | 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)); 118 $text = $news->renderText(); 120 if ($news->hasImage()) { 129 $news = $stream->getNews(); 131 for ($i = $start; $i < min([$start + $length, (count($news))]); $i++) { 133 $htmlNews[] = $news[$i]->render($e, $streamId, $pageId); 170 $this->helper->serviceNews->update($news, $data); 218 $news = $this->helper->serviceNews->getAll(); [all …]
|
/plugin/fksnewsfeed/inc/ORM/ |
H A D | ModelStream.php | 26 $news = []; 33 $news[] = $feed; 35 return $this->sortNews($news); 38 private function sortNews(array $news): array { argument 39 usort($news, 49 return $news;
|
/plugin/firenews/HTMLTemplates/news/ |
H A D | news.css | 1 .container-news { 24 .news { 28 .div-news {
|
/plugin/fksnewsfeed/admin/ |
H A D | push.php | 73 $news = $this->helper->serviceNews->getById($id); 74 echo $news->render('even', ' ', ' ', false); 87 private function newsToId(array $news): array { argument 90 }, $news);
|
/plugin/fksnewsfeed/syntax/ |
H A D | feed.php | 58 $news = $this->helper->serviceNews->getById($param['id']); 59 if (is_null($news) || ($param['id'] == 0)) { 64 $renderer->doc .= $this->getContent($news, $param);
|
H A D | carousel.php | 46 private function renderCarousel(Doku_Renderer $renderer, array $news, array $params): void { argument 52 if (!isset($news[$i])) { 58 $feed = $news[$i];
|
/plugin/fksnewsfeed/db/ |
H A D | update0002.sql | 1 CREATE TABLE `news` 38 FOREIGN KEY (`news_id`) REFERENCES `news` (`news_id`),
|
/plugin/firenews/ |
H A D | todo.md | 7 - [ ] news nach ablauf datum löschen aus der datenbank? 11 - [ ] number of news on one page
|
H A D | plugin.info.txt | 6 desc Creates news
|
/plugin/scrollticker/ |
H A D | README.md | 18 or you could fetch a list with links to the articles in namespace "news" tagged with "latest", usin… 21 {{topic>news?latest}}
|
H A D | plugin.info.txt | 6 desc format unsorted list as scrolling news ticker
|
/plugin/news/syntax/ |
H A D | item.php | 46 $this->Lexer->addEntryPattern('<news.*?>(?=.*?</news>)',$mode,'plugin_news_item');
|
/plugin/pagetemplater/ |
H A D | README.md | 4 …news) uses the blog plugin. The blog entries always have a plain look - unless you define some sty…
|
/plugin/anewssystem/ |
H A D | INFO | 7 desc provides an easy to handle, page based news system
|
H A D | plugin.info.txt | 8 desc provides an easy to handle, page based news system
|
/plugin/feedaggregator/ |
H A D | plugin.info.txt | 6 desc A DokuWiki plugin for aggregating multiple news feeds onto a single wiki page.
|
/plugin/news/scripts/ |
H A D | newsfeed.ini | 2 ;multi user news ini file
|
/plugin/anewssystem/tpl/ |
H A D | newstemplate.txt | 8 text |textarea|cols="63" rows="7" | |Your news article:|msgdescr
|
H A D | newstemplate_en.txt | 8 text |textarea|cols="63" rows="7" | |Your news article:|msgdescr
|