では、( をクリックしたときに呼び出されるアクション) が呼び出されてapp/code/core/Mage/Adminhtml/controllers/CacheController.php
いることがわかります。flushAllAction()
Flush Cache Storage
この関数には次のものが含まれます。
/**
* Flush cache storage
*/
public function flushAllAction()
{
Mage::dispatchEvent('adminhtml_cache_flush_all');
Mage::app()->getCacheInstance()->flush();
$this->_getSession()->addSuccess(Mage::helper('adminhtml')->__("The cache storage has been flushed."));
$this->_redirect('*/*');
}
これを独自のファイルで呼び出すには、次のようにします。
require_once('app/Mage.php');
Mage::app()->getCacheInstance()->flush();
これで、cronjob を使用して php ファイルを実行できます。