modx->runProcessor('security/logout'); $url = $this->modx->getOption('manager_url',null,MODX_MANAGER_URL); $this->modx->sendRedirect($url); } /** * Return the pagetitle * * @return string */ public function getPageTitle() { return $this->modx->lexicon('logout'); } /** * Return the location of the template file * @return string */ public function getTemplateFile() { return 'security/logout.tpl'; } /** * Specify the language topics to load * @return array */ public function getLanguageTopics() { return array('access','user'); } }