is_drupal = TRUE; $this->supports_form_extensions = TRUE; } /** * @param string dir base civicrm directory * Return default Site Settings * @return array array * - $url, (Joomla - non admin url) * - $siteName, * - $siteRoot */ function getDefaultSiteSettings($dir){ $config = CRM_Core_Config::singleton(); $siteName = $siteRoot = NULL; $matches = array(); if (preg_match( '|/sites/([\w\.\-\_]+)/|', $config->templateCompileDir, $matches )) { $siteName = $matches[1]; if ($siteName) { $siteName = "/sites/$siteName/"; $siteNamePos = strpos($dir, $siteName); if ($siteNamePos !== FALSE) { $siteRoot = substr($dir, 0, $siteNamePos); } } } $url = $config->userFrameworkBaseURL; return array($url, $siteName, $siteRoot); } }