$path))); } } /** * Enables the Boost static page cache. */ function drush_boost_enable() { drush_op('variable_set', 'boost', CACHE_ENABLED); if (DRUSH_VERBOSE) { drush_print(t('Boost static page cache enabled.')); } } /** * Disables the Boost static page cache. */ function drush_boost_disable() { drush_op('variable_set', 'boost', CACHE_DISABLED); if (DRUSH_VERBOSE) { drush_print(t('Boost static page cache disabled.')); } } //////////////////////////////////////////////////////////////////////////////