/** * Custom clean cache method, 2 places for 2 clients. * * @param string $group Optional cache group name. * @param integer $client_id Application client id. * * @return void * * @since 1.6 */ protected function cleanCache($group = null, $client_id = 0) { parent::cleanCache('_system'); parent::cleanCache('com_languages'); }
/** * Custom clean cache method, 2 places for 2 clients * * @since 1.6 */ function cleanCache() { parent::cleanCache('_system', 0); parent::cleanCache('_system', 1); parent::cleanCache('com_languages', 0); parent::cleanCache('com_languages', 1); }
/** * Custom clean cache method for different clients * * @siece 1.6 * */ protected function cleanCache($group = null, $client_id = 0) { parent::cleanCache('com_pagebuilder', $this->getClient()); }
/** * Custom clean cache method for different clients * * @since 1.6 */ protected function cleanCache($group = null, $client_id = 0) { parent::cleanCache('com_poweradmin', $this->getClient()); }