*/ /** * Klasa stErrorFrontendActions * * @package stErrorPlugin * @subpackage actions */ class stErrorFrontendActions extends stActions { /** * Error 404 - Page not found */ public function executeError404() { $this->smarty = new stSmarty($this->getModuleName()); $this->getResponse()->setStatusCode(404); $this->getResponse()->setHttpHeader('Status', '404 Not Found'); $this->getResponse()->addMeta('robots', 'noindex'); } }