mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 14:58:42 +00:00
be7c1e7a8f
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1482 48356398-32a2-884e-a903-53898d9a118a
38 lines
857 B
PHP
Executable File
38 lines
857 B
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
|
|
chdir(dirname(__FILE__));
|
|
require_once 'common.php';
|
|
assertCli();
|
|
|
|
/**
|
|
* Flushes the default HTMLDefinition serial cache
|
|
* @param Accepts one argument, cache type to flush; otherwise flushes all
|
|
* the caches.
|
|
*/
|
|
|
|
echo "Flushing cache... \n";
|
|
|
|
require_once(dirname(__FILE__) . '/../library/HTMLPurifier.auto.php');
|
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
|
|
$names = array('HTML', 'CSS', 'URI', 'Test');
|
|
if (isset($argv[1])) {
|
|
if (in_array($argv[1], $names)) {
|
|
$names = array($argv[1]);
|
|
} else {
|
|
echo "Did not recognized cache parameter {$argv[1]} as valid cache, aborting.\n";
|
|
exit;
|
|
}
|
|
}
|
|
|
|
foreach ($names as $name) {
|
|
echo " - Flushing $name\n";
|
|
$cache = new HTMLPurifier_DefinitionCache_Serializer($name);
|
|
$cache->flush($config);
|
|
}
|
|
|
|
echo "Cache flushed successfully.\n";
|
|
|