GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/Pico/plugins/ |
Upload File : |
<?php /** * Parses the contents of all pages * * This plugin exists for backward compatibility and is disabled by default. * It gets automatically enabled when {@link PicoDeprecated} is enabled. You * can avoid this by calling {@link PicoParsePagesContent::setEnabled()}. * * This plugin heavily impacts Pico's performance, you should avoid to enable * it whenever possible! If you must parse the contents of a page, do this * selectively and only for pages you really need to. * * @author Daniel Rudolf * @link http://picocms.org * @license http://opensource.org/licenses/MIT The MIT License * @version 1.0 */ class PicoParsePagesContent extends AbstractPicoPlugin { /** * This plugin is disabled by default * * @see AbstractPicoPlugin::$enabled */ protected $enabled = false; /** * Parses the contents of all pages * * @see DummyPlugin::onSinglePageLoaded() */ public function onSinglePageLoaded(array &$pageData) { if (!isset($pageData['content'])) { $pageData['content'] = $this->prepareFileContent($pageData['raw_content'], $pageData['meta']); $pageData['content'] = $this->parseFileContent($pageData['content']); } } }