Home
last modified time | relevance | path

Searched refs:standalone (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php78 public $standalone = false; variable in SimplePie\\XML\\Declaration\\Parser
167 $this->standalone = '';
295 if (substr($this->data, $this->position, 10) === 'standalone') {
317 if ($standalone = $this->get_value()) {
318 switch ($standalone) {
320 $this->standalone = true;
324 $this->standalone = false;
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DREADME.md5 It was originally ported to PHP in 2006 as part of the [DokuWiki](http://www.dokuwiki.org) wiki engine. It has received several improvements over the years and is now available as a standalone library.
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php132 $data = '<?xml version="' . $declaration->version . '" encoding="' . $encoding . '" standalone="' . (($declaration->standalone) ? 'yes' : 'no') . '"?>' ."\n". $this->declare_html_entities() . $data;