Pico::getMetaHeaders PHP Method

getMetaHeaders() public method

Heads up! Calling this method triggers the onMetaHeaders event. Keep this in mind to prevent a infinite loop!
public getMetaHeaders ( ) : string[]
return string[] known meta headers; the array value specifies the YAML key to search for, the array key is later used to access the found value
    public function getMetaHeaders()
    {
        $headers = array('title' => 'Title', 'description' => 'Description', 'author' => 'Author', 'date' => 'Date', 'robots' => 'Robots', 'template' => 'Template');
        $this->triggerEvent('onMetaHeaders', array(&$headers));
        return $headers;
    }