modx->getOption('fred.core_path', null, $this->modx->getOption('core_path', null, MODX_CORE_PATH) . 'components/fred/'); $this->fred = $this->modx->getService( 'fred', 'Fred', $corePath . 'model/fred/', array( 'core_path' => $corePath ) ); $this->addCss($this->fred->getOption('cssUrl') . 'fred.css'); $this->addJavascript($this->fred->getOption('jsUrl') . 'fred.js'); $this->addHtml(''); parent::initialize(); } public function getLanguageTopics() { return array('fred:default'); } public function checkPermissions() { return $this->modx->hasPermission('fred'); } }