Home
last modified time | relevance | path

Searched refs:category (Results 1 – 12 of 12) sorted by relevance

/dokuwiki/inc/Remote/
H A DApiCall.php21 protected string $category; variable in dokuwiki\\Remote\\ApiCall
30 * @param string $category The category this call belongs to
32 public function __construct($method, $category = '') argument
39 $this->category = $category;
153 return $this->category;
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DAtomCreator10.php58 if ($this->category != "") {
60 $feed .= " <category term=\"".htmlspecialchars($this->category)."\" />\n";
105 if (!empty($this->items[$i]->category)) {
106 foreach ((array) $this->items[$i]->category as $category) {
113 $feed .= " term=\"".htmlspecialchars($category)."\" />\n";
H A DRSSCreator091.php110 if ($this->category != "") {
111 $feed .= " <category>".htmlspecialchars($this->category)."</category>\n";
153 if (is_array($this->items[$i]->category)) {
154 foreach ($this->items[$i]->category as $cat) {
158 if ($this->items[$i]->category != "") {
159 … $feed .= " <category>".htmlspecialchars($this->items[$i]->category)."</category>\n";
H A DFeedCreator.php22 …opyright, $pubDate, $lastBuildDate, $editor, $editorEmail, $webmaster, $category, $docs, $ttl, $ra…
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedItem.php19 …public $author, $authorEmail, $authorURL, $image, $category, $categoryScheme, $comments, $guid, $s…
/dokuwiki/vendor/simplepie/simplepie/src/
H A DItem.php416 …reach ((array) $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_ATOM_10, $type) as $category) {
420 if (isset($category['attribs']['']['term'])) {
421 … $term = $this->sanitize($category['attribs']['']['term'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
423 if (isset($category['attribs']['']['scheme'])) {
424 …$scheme = $this->sanitize($category['attribs']['']['scheme'], \SimplePie\SimplePie::CONSTRUCT_TEXT…
426 if (isset($category['attribs']['']['label'])) {
427 … $label = $this->sanitize($category['attribs']['']['label'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
431 …oreach ((array) $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_RSS_20, $type) as $category) {
434 $term = $this->sanitize($category['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
435 if (isset($category['attribs']['']['domain'])) {
[all …]
H A DSource.php138 …(array) $this->get_source_tags(\SimplePie\SimplePie::NAMESPACE_ATOM_10, 'category') as $category) {
142 if (isset($category['attribs']['']['term'])) {
143 … $term = $this->sanitize($category['attribs']['']['term'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
145 if (isset($category['attribs']['']['scheme'])) {
146 …$scheme = $this->sanitize($category['attribs']['']['scheme'], \SimplePie\SimplePie::CONSTRUCT_TEXT…
148 if (isset($category['attribs']['']['label'])) {
149 … $label = $this->sanitize($category['attribs']['']['label'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
153 …((array) $this->get_source_tags(\SimplePie\SimplePie::NAMESPACE_RSS_20, 'category') as $category) {
156 $term = $this->sanitize($category['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
157 if (isset($category['attribs']['']['domain'])) {
[all …]
H A DParser.php377 private function parse_hcard($data, $category = false) argument
394 $person_tag = $category ? '<span class="person-tag"></span>' : '';
567 foreach ($entry['properties']['category'] as $category) {
571 if (is_string($category)) {
573 $category_csv .= str_replace(',', '', $category);
575 $category_csv .= $this->parse_hcard($category, true);
H A DSimplePie.php2375 … foreach ((array) $this->get_channel_tags(self::NAMESPACE_ATOM_10, 'category') as $category) {
2379 if (isset($category['attribs']['']['term'])) {
2380 $term = $this->sanitize($category['attribs']['']['term'], self::CONSTRUCT_TEXT);
2382 if (isset($category['attribs']['']['scheme'])) {
2383 $scheme = $this->sanitize($category['attribs']['']['scheme'], self::CONSTRUCT_TEXT);
2385 if (isset($category['attribs']['']['label'])) {
2386 $label = $this->sanitize($category['attribs']['']['label'], self::CONSTRUCT_TEXT);
2390 foreach ((array) $this->get_channel_tags(self::NAMESPACE_RSS_20, 'category') as $category) {
2393 $term = $this->sanitize($category['data'], self::CONSTRUCT_TEXT);
2394 if (isset($category['attribs']['']['domain'])) {
[all …]
/dokuwiki/lib/styles/
H A Dfeed.css13 category, image { selector
/dokuwiki/vendor/geshi/geshi/
H A DTHANKS10 http://blog.igeek.info/still-fresh/category/wp-plugins/igsyntax-hiliter/)
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md219 * Changed the sanitization type for author and category back to text from HTML. [#531](https://gith…
223 * Introduced `SimplePie_Category->get_type()` for retrieving category type. [#492](https://github.c…