Home
last modified time | relevance | path

Searched refs:news (Results 1 – 25 of 62) sorted by relevance

123

/plugin/fksnewsfeed/inc/renderer/
H A DVyfukRenderer.php29 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 DFykosRenderer.php150 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 DAbstractRenderer.php24 abstract public function render(string $innerHtml, string $formHtml, ModelNews $news): string; argument
/plugin/news/
H A DREADME3 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 Dplugin.info.txt1 base news
5 name news
6 desc news feed generator
7 url http://www.dokuwiki.org/plugin:news
/plugin/fksnewsfeed/
H A Dscript.js20 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 Daction.php114 $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 DModelStream.php26 $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 Dnews.css1 .container-news {
24 .news {
28 .div-news {
/plugin/fksnewsfeed/admin/
H A Dpush.php73 $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 Dfeed.php58 $news = $this->helper->serviceNews->getById($param['id']);
59 if (is_null($news) || ($param['id'] == 0)) {
64 $renderer->doc .= $this->getContent($news, $param);
H A Dcarousel.php46 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 Dupdate0002.sql1 CREATE TABLE `news`
38 FOREIGN KEY (`news_id`) REFERENCES `news` (`news_id`),
/plugin/firenews/
H A Dtodo.md7 - [ ] news nach ablauf datum löschen aus der datenbank?
11 - [ ] number of news on one page
H A Dplugin.info.txt6 desc Creates news
/plugin/scrollticker/
H A DREADME.md18 or you could fetch a list with links to the articles in namespace "news" tagged with "latest", usin…
21 {{topic>news?latest}}
H A Dplugin.info.txt6 desc format unsorted list as scrolling news ticker
/plugin/news/syntax/
H A Ditem.php46 $this->Lexer->addEntryPattern('<news.*?>(?=.*?</news>)',$mode,'plugin_news_item');
/plugin/pagetemplater/
H A DREADME.md4news) uses the blog plugin. The blog entries always have a plain look - unless you define some sty…
/plugin/anewssystem/
H A DINFO7 desc provides an easy to handle, page based news system
H A Dplugin.info.txt8 desc provides an easy to handle, page based news system
/plugin/feedaggregator/
H A Dplugin.info.txt6 desc A DokuWiki plugin for aggregating multiple news feeds onto a single wiki page.
/plugin/news/scripts/
H A Dnewsfeed.ini2 ;multi user news ini file
/plugin/anewssystem/tpl/
H A Dnewstemplate.txt8 text |textarea|cols="63" rows="7" | |Your news article:|msgdescr
H A Dnewstemplate_en.txt8 text |textarea|cols="63" rows="7" | |Your news article:|msgdescr

123