userFramework; $config->userFramework = 'Soap'; self::$ufClass = $config->userFrameworkClass; $config->userFrameworkClass = 'CRM_Utils_System_Soap'; } /** * Get the locale set in the hosting CMS * * @return null as the language is set elsewhere */ function getUFLocale() { return NULL; } /** * Get user login URL for hosting CMS (method declared in each CMS system class) * * @param string $destination - if present, add destination to querystring (works for Drupal only) * * @return string - loginURL for the current CMS * @static */ public function getLoginURL($destination = '') { throw new Exception("Method not implemented: getLoginURL"); } }