diff options
author | Arto Bendiken | 2007-09-30 19:53:30 (GMT) |
---|---|---|
committer | Arto Bendiken | 2007-09-30 19:53:30 (GMT) |
commit | 055f0fbc4cf79d61009a65d3acb7d912f84bae9a (patch) | |
tree | 27ff99a6a7db99bf82e0e4a8e8d2a1dd7db695c9 | |
parent | a9054dd8027120fbd96e2272b275d9b0d7a72127 (diff) |
Removed Drush stubs, as they are unlikely to be further fleshed out.
-rw-r--r-- | boost.drush | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/boost.drush b/boost.drush deleted file mode 100644 index 2d323ea..0000000 --- a/boost.drush +++ /dev/null @@ -1,52 +0,0 @@ -<?php -// $Id$ - -/** - * @file - * Actions for managing the static page cache provided by the Boost module. - */ - -////////////////////////////////////////////////////////////////////////////// - -/** - * Lists all files currently in the Boost static file system cache. - */ -function drush_boost_list() { - // TODO: implementation. -} - -/** - * Expires all files, or all files matching a given path, from the static page cache. - */ -function drush_boost_expire($path = NULL) { - drush_op('boost_cache_expire', $path, TRUE); - - if (DRUSH_VERBOSE) { - drush_print(empty($key) ? t('Boost static page cache fully cleared.') : - t("Boost cached pages like `%path' expired.", array('%path' => $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.')); - } -} - -////////////////////////////////////////////////////////////////////////////// |