Development

Changeset 10325

You must first sign up to be able to contribute.

Changeset 10325

Show
Ignore:
Timestamp:
07/16/08 19:14:14 (5 years ago)
Author:
KRavEN
Message:

More work getting the default symfony generator backwards compatibility working. Test by adding ajax: false to generator.yml

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfExtjsThemePlugin/data/generator/sfPropelAdmin/extjs/template/actions/actions.class.php

    r10321 r10325  
    1414     //create template-file for tab-page 
    1515  ob_start(); 
    16   require('__BasesfExtjsThemePlugin.class.php')
     16  require_once dirname(__FILE__).'/../lib/__BasesfPropelAdmin.class.php'
    1717  $content = "[?php\n".ob_get_clean()."\n?]"; 
    1818 
     
    3232class <?php echo $this->getGeneratedModuleName() ?>Actions extends <?php echo 'Base'.$this->getGeneratedModuleName() ?>Actions 
    3333{ 
     34<?php if($this->getParameterValue('ajax',true)): ?> 
    3435  public function executeAjaxFailed() 
    3536  { 
     
    12471248 
    12481249<?php endforeach; ?> 
    1249  
     1250<?php endif; ?> 
    12501251}