Add onSinglePageContent event

This commit is contained in:
Daniel Rudolf 2017-05-14 01:26:29 +02:00
parent 773f4795f7
commit d26da62bf1
No known key found for this signature in database
GPG key ID: A061F02CD8DE4538
2 changed files with 24 additions and 0 deletions

View file

@ -1378,6 +1378,9 @@ class Pico
if ($file !== $this->requestFile) {
$rawContent = $this->loadFileContent($file);
// trigger onSinglePageContent event
$this->triggerEvent('onSinglePageContent', array($id, &$rawContent));
$headers = $this->getMetaHeaders();
try {
$meta = $this->parseFileMeta($rawContent, $headers);

View file

@ -232,6 +232,7 @@ class DummyPlugin extends AbstractPicoPlugin
*
* @see Pico::readPages()
* @see DummyPlugin::onSinglePageLoading()
* @see DummyPlugin::onSinglePageContent()
* @see DummyPlugin::onSinglePageLoaded()
* @see DummyPlugin::onPagesDiscovered()
* @see DummyPlugin::onPagesLoaded()
@ -247,6 +248,7 @@ class DummyPlugin extends AbstractPicoPlugin
*
* Set `$id` to `null` to remove this page from the pages array.
*
* @see DummyPlugin::onSinglePageContent()
* @see DummyPlugin::onSinglePageLoaded()
* @see DummyPlugin::onPagesDiscovered()
* @see DummyPlugin::onPagesLoaded()
@ -258,6 +260,25 @@ class DummyPlugin extends AbstractPicoPlugin
// your code
}
/**
* Triggered when Pico loads the raw contents of a single page
*
* Please note that this event isn't triggered when the currently processed
* page is the requested page. The reason for this exception is that the
* raw contents of this page were loaded already.
*
* @see DummyPlugin::onSinglePageLoaded()
* @see DummyPlugin::onPagesDiscovered()
* @see DummyPlugin::onPagesLoaded()
* @param string $id relative path to the content file
* @param string &$rawContent raw file contents
* @return void
*/
public function onSinglePageContent($id, &$rawContent)
{
// your code
}
/**
* Triggered when Pico loads a single page
*