Home
last modified time | relevance | path

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

123

/plugin/fksnewsfeed/inc/renderer/
DVyfukRenderer.php15 public function render(string $innerHtml, string $formHtml, ModelNews $news): string { argument
18 … $html .= '<div class="card card-outline-' . $news->category . ' card-outline-vyfuk-orange">';
29 protected function getHeader(ModelNews $news) { argument
30 return '<h4 class="card-title">' . $news->title . '</h4>' .
32 '<small class="text-muted">' . $news->getLocalDate(function ($key) {
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) .
181 '"><span class="fa fa-envelope"></span>' . hsc($news->authorName) . '</a>
[all …]
DFykosRenderer.php16 public function render(string $innerHtml, string $formHtml, ModelNews $news): string { argument
19 $html .= '<div class="bs-callout mb-3 bs-callout-' . $news->category . '">';
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) .
157 '"><span class="fa fa-envelope"></span>' . hsc($news->authorName) . '</a>' .
161 protected function getHeader(ModelNews $news): string { argument
162 return '<h4>' . $news->title .
163 '<small class="float-right">' . $news->getLocalDate(function ($key) {
[all …]
DAbstractRenderer.php24 abstract public function render(string $innerHtml, string $formHtml, ModelNews $news): string; argument
/plugin/news/
DREADME3 This plugin will generate a news feed that can be read in a standard news reader (See below for how…
15 If you use the first form, then you bracket your news items with the following markup:
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>
33 In this form, the news items are generated from material which is preceded by Dokuwiki header marku…
[all …]
Dplugin.info.txt1 base news
5 name news
6 desc news feed generator
7 url http://www.dokuwiki.org/plugin:news
/plugin/fksnewsfeed/
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;
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()) {
121 … $this->helper->openGraphData->addMetaData('og', 'image', ml($news->image, null, true, '&', true));
129 $news = $stream->getNews();
131 for ($i = $start; $i < min([$start + $length, (count($news))]); $i++) {
133 $htmlNews[] = $news[$i]->render($e, $streamId, $pageId);
169 $news = $this->helper->serviceNews->getById($INPUT->param('news')['id']);
[all …]
/plugin/fksnewsfeed/inc/ORM/
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/
Dnews.css1 .container-news {
24 .news {
28 .div-news {
/plugin/fksnewsfeed/admin/
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/
Dfeed.php58 $news = $this->helper->serviceNews->getById($param['id']);
59 if (is_null($news) || ($param['id'] == 0)) {
64 $renderer->doc .= $this->getContent($news, $param);
Dcarousel.php46 private function renderCarousel(Doku_Renderer $renderer, array $news, array $params): void { argument
52 if (!isset($news[$i])) {
58 $feed = $news[$i];
/plugin/firenews/
Dtodo.md7 - [ ] news nach ablauf datum löschen aus der datenbank?
11 - [ ] number of news on one page
Dplugin.info.txt6 desc Creates news
/plugin/fksnewsfeed/db/
Dupdate0002.sql1 CREATE TABLE `news`
38 FOREIGN KEY (`news_id`) REFERENCES `news` (`news_id`),
/plugin/scrollticker/
DREADME.md18 or you could fetch a list with links to the articles in namespace "news" tagged with "latest", usin…
21 {{topic>news?latest}}
Dplugin.info.txt6 desc format unsorted list as scrolling news ticker
/plugin/news/syntax/
Ditem.php46 $this->Lexer->addEntryPattern('<news.*?>(?=.*?</news>)',$mode,'plugin_news_item');
/plugin/pagetemplater/
DREADME.md4news) uses the blog plugin. The blog entries always have a plain look - unless you define some sty…
/plugin/anewssystem/
DINFO7 desc provides an easy to handle, page based news system
Dplugin.info.txt8 desc provides an easy to handle, page based news system
/plugin/feedaggregator/
Dplugin.info.txt6 desc A DokuWiki plugin for aggregating multiple news feeds onto a single wiki page.
/plugin/news/scripts/
Dnewsfeed.ini2 ;multi user news ini file
/plugin/anewssystem/tpl/
Dnewstemplate_en.txt8 text |textarea|cols="63" rows="7" | |Your news article:|msgdescr
Dnewstemplate.txt8 text |textarea|cols="63" rows="7" | |Your news article:|msgdescr

123