示例#1
0
 /**
  * Execute common helper method
  *
  * @param string $type Helper type
  *
  * @return void
  */
 public function runCommonHelpers($type)
 {
     parent::runCommonHelpers($type);
 }
示例#2
0
文件: Cell.php 项目: kewaunited/xcart
 /**
  * Execute some methods
  *
  * @param \XLite\Upgrade\Entry\AEntry $entry      Entry
  * @param string                      $type       Helper type
  * @param boolean                     $isTestMode Flag OPTIONAL
  *
  * @return void
  */
 public function runCommonHelper($entry, $type, $isTestMode = false)
 {
     if (!$isTestMode) {
         $entry->runCommonHelpers($type);
     }
 }