コード例 #1
0
ファイル: categories.php プロジェクト: kosmosby/medicine-prof
 /**
  * Logic to save a category
  *
  * @access public
  * @return void
  * @since 1.0
  */
 function save()
 {
     // Check for request forgeries
     JRequest::checkToken() or jexit('Invalid Token');
     parent::save();
     $cache = JFactory::getCache('com_flexicontent');
     $cache->clean();
     $catscache = JFactory::getCache('com_flexicontent_cats');
     $catscache->clean();
 }