X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FSystem%2FDrupalBase.php;h=a881144a69ec84bb3233467d7f92b759a8d1338e;hb=53cc5b88dfc2d12f529cdbd0be88511b90507047;hp=fd3523ccbf9a8be9a242da2fa36911d7e25e150d;hpb=4014394ebf74035cc7cc8bee5b37e8057f2c96b2;p=civicrm-core.git diff --git a/CRM/Utils/System/DrupalBase.php b/CRM/Utils/System/DrupalBase.php index fd3523ccbf..a881144a69 100644 --- a/CRM/Utils/System/DrupalBase.php +++ b/CRM/Utils/System/DrupalBase.php @@ -37,10 +37,23 @@ * Drupal specific stuff goes here */ abstract class CRM_Utils_System_DrupalBase extends CRM_Utils_System_Base { + + /** + * Does this CMS / UF support a CMS specific logging mechanism? + * @todo - we should think about offering up logging mechanisms in a way that is also extensible by extensions + * @var bool + */ + var $supports_UF_Logging = TRUE; /** * */ function __construct() { + /** + * deprecated property to check if this is a drupal install. The correct method is to have functions on the UF classes for all UF specific + * functions and leave the codebase oblivious to the type of CMS + * @deprecated + * @var bool + */ $this->is_drupal = TRUE; $this->supports_form_extensions = TRUE; } @@ -260,4 +273,28 @@ abstract class CRM_Utils_System_DrupalBase extends CRM_Utils_System_Base { return TRUE; } } + + + /** + * Log error to CMS + */ + function logger($message) { + if (CRM_Core_Config::singleton()->userFrameworkLogging) { + watchdog('civicrm', '%message', array('%message' => $message), NULL, WATCHDOG_DEBUG); + } + } + + /** + * Flush css/js caches + */ + function clearResourceCache() { + _drupal_flush_css_js(); + } + + /** + * Append to coreResourcesList + */ + function appendCoreResources(&$list) { + $list[] = 'js/crm.drupal.js'; + } }