Changeset 10325
- Timestamp:
- 07/16/08 19:14:14 (5 years ago)
- Files:
-
- plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/actions/__BasesfExtjsThemePlugin.class.php (deleted)
- plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/actions/actions.class.php (modified) (3 diffs)
- plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/lib/__BasesfPropelAdmin.class.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/actions/actions.class.php
r10321 r10325 14 14 //create template-file for tab-page 15 15 ob_start(); 16 require ('__BasesfExtjsThemePlugin.class.php');16 require_once dirname(__FILE__).'/../lib/__BasesfPropelAdmin.class.php'; 17 17 $content = "[?php\n".ob_get_clean()."\n?]"; 18 18 … … 32 32 class <?php echo $this->getGeneratedModuleName() ?>Actions extends <?php echo 'Base'.$this->getGeneratedModuleName() ?>Actions 33 33 { 34 <?php if($this->getParameterValue('ajax',true)): ?> 34 35 public function executeAjaxFailed() 35 36 { … … 1247 1248 1248 1249 <?php endforeach; ?> 1249 1250 <?php endif; ?> 1250 1251 }