Home
last modified time | relevance | path

Searched +full:blog +(+path:plugin +path:blog) -(+path:plugin +path:blog +path:lang) (Results 1 – 12 of 12) sorted by relevance

/plugin/blog/syntax/
H A Dblog.php3 * Blog Plugin: displays a number of recent entries from the blog subnamespace
18 $this->Lexer->addSpecialPattern('\{\{blog>.*?\}\}',$mode,'plugin_blog_blog');
24 $match = substr($match, 7, -2); // strip {{blog> from start and }} from end
27 array_unshift($flags, 'link'); // always make the first header of a blog entry a permalink (unless nolink is set)
56 // get the blog entries for our namespace
58 if ($my = plugin_load('helper', 'blog')) $entries = $my->getBlog($ns);
123 // now include the blog entries
127 // prevent blog include loops
160 * Displays links to older newer entries of the blog namespac
[all...]
H A Ddraft.php3 * Blog Plugin, draft component: marks the current page as draft
H A Darchive.php95 // get the blog entries for our namespace
97 if ($my = plugin_load('helper', 'blog')) $entries = $my->getBlog($ns, NULL, $author);
145 // use the blog plugin cache handler in order to ensure that the cache is expired whenever a page, comment
H A Dautoarchive.php46 // get the blog entries for our namespace
47 if ($my = plugin_load('helper', 'blog')) $entries = $my->getBlog($ns);
/plugin/blog/
H A DREADME1 ====== Blog Plugin for DokuWiki ======
3 All documentation for the Blog Plugin is available online at:
5 * http://dokuwiki.org/plugin:blog
H A Dplugin.info.txt2 base blog
6 name Blog
8 url https://www.dokuwiki.org/plugin:blog
H A Dhelper.php23 'desc' => 'returns blog entries in reverse chronological order',
39 * Get blog entries from a given namespace
126 * required by the Blog plugin (not including those for the Include plugin),
134 * @return array All flags required by the Blog plugin (only)
H A Daction.php109 $TEXT = io_readFile(DOKU_PLUGIN.'blog/_template.txt');
/plugin/blogtng/syntax/
H A Dblog.php3 * Syntax Component Blog
7 * Covers all <blog *> syntax commands
20 'blog' => null,
25 'format' => ':blog:%Y:%m:%{title}',
74 * Register the <blog *></blog> syntax
79 $this->Lexer->addSpecialPattern('<blog ?[^>]*>.*?</blog>', $mode, 'plugin_blogtng_blog');
92 $match = substr(trim($match), 5, -7); // strip '<blog' and '</blog>'
101 msg('Unknown blog syntax type "'.hsc($type).'" using "list" instead',-1);
106 $conf['blog'] = array_filter(array_map('trim', explode(',', $conf['blog'])));
110 if (($type != 'tagsearch') && (!count($conf['blog']))) {
[all …]
/plugin/blog/conf/
H A Ddefault.php3 * Options for the Blog Plugin
5 $conf['namespace'] = 'blog'; // default location for blog entries
9 $conf['sortkey'] = 'cdate'; // sort key for blog entries
16 $conf['excluded_pages'] = '!^blog:\d{4}(:\d{2})?$!'; // regex for pages to exclude from bloglisting
H A Dmetadata.php4 * Additions for the blog plugin
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Blogger/
H A DBlog.php20 class Blog extends \Google\Model class
254 class_alias(Blog::class, 'Google_Service_Blogger_Blog');