X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FSystem%2FJoomla.php;h=3bbb4c50d2208b133dbc0f29722ed653babfff28;hb=4b57bc9f2b1fa63555e588f6ad9c3c079725af4d;hp=f8fc2190af65e96744529c007367d5505859d7cf;hpb=c490a46ac4bf490d3fbb31e35d24c6b43e764f00;p=civicrm-core.git diff --git a/CRM/Utils/System/Joomla.php b/CRM/Utils/System/Joomla.php index f8fc2190af..3bbb4c50d2 100644 --- a/CRM/Utils/System/Joomla.php +++ b/CRM/Utils/System/Joomla.php @@ -1,7 +1,7 @@ get_template_vars('breadcrumb'); @@ -238,9 +235,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @internal param string $bc the new breadcrumb to be appended * * @return void - * @access public */ - function resetBreadCrumb() { + public function resetBreadCrumb() { return; } @@ -252,9 +248,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @internal param string $head the new string to be appended * * @return void - * @access public */ - static function addHTMLHead($string = NULL) { + public static function addHTMLHead($string = NULL) { if ($string) { $document = JFactory::getDocument(); $document->addCustomTag($string); @@ -271,7 +266,6 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @see CRM_Core_Region::render() * * @return bool TRUE if we support this operation in this CMS, FALSE otherwise - * @access public */ public function addScriptUrl($url, $region) { return FALSE; @@ -287,7 +281,6 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @see CRM_Core_Region::render() * * @return bool TRUE if we support this operation in this CMS, FALSE otherwise - * @access public */ public function addScript($code, $region) { return FALSE; @@ -303,7 +296,6 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @see CRM_Core_Region::render() * * @return bool TRUE if we support this operation in this CMS, FALSE otherwise - * @access public */ public function addStyleUrl($url, $region) { if ($region == 'html-header') { @@ -324,7 +316,6 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @see CRM_Core_Region::render() * * @return bool TRUE if we support this operation in this CMS, FALSE otherwise - * @access public */ public function addStyle($code, $region) { if ($region == 'html-header') { @@ -350,7 +341,6 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @param bool $forceBackend * * @return string an HTML string containing a link to the given path. - * @access public */ function url($path = NULL, $query = NULL, $absolute = TRUE, $fragment = NULL, $htmlize = TRUE, @@ -411,25 +401,24 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { } /** - * rewrite various system urls to https + * Rewrite various system urls to https * * @return void * access public */ - function mapConfigToSSL() { + public function mapConfigToSSL() { // dont need to do anything, let CMS handle their own switch to SSL return; } /** - * figure out the post url for the form + * Figure out the post url for the form * * @param $action the default action if one is pre-specified * * @return string the url to post the form - * @access public */ - function postURL($action) { + public function postURL($action) { if (!empty($action)) { return $action; } @@ -440,14 +429,13 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { } /** - * set the email address of the user + * Set the email address of the user * * @param object $user handle to the user object * * @return void - * @access public */ - function setEmail(&$user) { + public function setEmail(&$user) { global $database; $query = "SELECT email FROM #__users WHERE id='$user->id'"; $database->setQuery($query); @@ -464,9 +452,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @return mixed false if no auth * array( contactID, ufID, unique string ) if success - * @access public */ - function authenticate($name, $password, $loadCMSBootstrap = FALSE) { + public function authenticate($name, $password, $loadCMSBootstrap = FALSE) { require_once 'DB.php'; $config = CRM_Core_Config::singleton(); @@ -558,9 +545,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * * @param array $data array with user specific data * - * @access public */ - function setUserSession($data) { + public function setUserSession($data) { list($userID, $ufID) = $data; $user = new JUser( $ufID ); $session = JFactory::getSession(); @@ -574,9 +560,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * * @param string $message the message to set * - * @access public */ - function setMessage($message) { + public function setMessage($message) { return; } @@ -585,15 +570,15 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * * @return bool */ - function loadUser($user) { + public function loadUser($user) { return TRUE; } - function permissionDenied() { + public function permissionDenied() { CRM_Core_Error::fatal(ts('You do not have permission to access this page.')); } - function logout() { + public function logout() { session_destroy(); header("Location:index.php"); } @@ -603,7 +588,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * * @return string the used locale or null for none */ - function getUFLocale() { + public function getUFLocale() { if (defined('_JEXEC')) { $conf = JFactory::getConfig(); $locale = $conf->get('language'); @@ -615,7 +600,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { /** * @return string */ - function getVersion() { + public function getVersion() { if (class_exists('JVersion')) { $version = new JVersion; return $version->getShortVersion(); @@ -626,7 +611,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { } /** - * load joomla bootstrap + * Load joomla bootstrap * * @param $params array with uid or name and password * @param $loadUser boolean load cms user? @@ -636,7 +621,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * * @return bool */ - function loadBootStrap($params = array(), $loadUser = TRUE, $throwError = TRUE, $realPath = NULL, $loadDefines = TRUE) { + public function loadBootStrap($params = array(), $loadUser = TRUE, $throwError = TRUE, $realPath = NULL, $loadDefines = TRUE) { // Setup the base path related constant. $joomlaBase = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))); @@ -683,7 +668,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { } /** - * check is user logged in. + * Check is user logged in. * * @return boolean true/false. */ @@ -707,7 +692,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * * @return string $userID logged in user unique identifier */ - function getLoggedInUniqueIdentifier() { + public function getLoggedInUniqueIdentifier() { $user = JFactory::getUser(); return $this->getUniqueIdentifierFromUserObject($user); } @@ -716,7 +701,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @param object $user object as described by the CMS * @return mixed */ - function getUserIDFromUserObject($user) { + public function getUserIDFromUserObject($user) { return !empty($user->id) ? $user->id : NULL; } @@ -726,7 +711,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * @return mixed $uniqueIdentifer Unique identifier from the user Framework system * */ - function getUniqueIdentifierFromUserObject($user) { + public function getUniqueIdentifierFromUserObject($user) { return ($user->guest) ? NULL : $user->email; } @@ -735,7 +720,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * * @return array CRM_Core_Module */ - function getModules() { + public function getModules() { $result = array(); $db = JFactory::getDbo(); @@ -819,7 +804,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * - $siteName, * - $siteRoot */ - function getDefaultSiteSettings($dir){ + public function getDefaultSiteSettings($dir){ $config = CRM_Core_Config::singleton(); $url = preg_replace( '|/administrator|', @@ -840,7 +825,7 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * * @return string */ - function getUserRecordUrl($contactID) { + public function getUserRecordUrl($contactID) { $uid = CRM_Core_BAO_UFMatch::getUFId($contactID); $userRecordUrl = NULL; // if logged in user is super user, then he can view other users joomla profile @@ -856,17 +841,17 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { * Is the current user permitted to add a user * @return bool */ - function checkPermissionAddUser() { + public function checkPermissionAddUser() { if (JFactory::getUser()->authorise('core.create', 'com_users')) { return TRUE; } } /** - * output code from error function + * Output code from error function * @param string $content */ - function outputError($content) { + public function outputError($content) { if (class_exists('JErrorPage')) { $error = new Exception($content); JErrorPage::render($error); @@ -878,5 +863,11 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base { parent::outputError($content); } } + + /** + * Append to coreResourcesList + */ + public function appendCoreResources(&$list) { + $list[] = 'js/crm.joomla.js'; + } } -