Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
[?php
2
 
3
/**
4
 * <?php echo $this->getModuleName() ?> module configuration.
5
 *
6
 * @package    ##PROJECT_NAME##
7
 * @subpackage <?php echo $this->getModuleName()."\n" ?>
8
 * @author     ##AUTHOR_NAME##
9
 * @version    SVN: $Id: helper.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $
10
 */
11
abstract class Base<?php echo ucfirst($this->getModuleName()) ?>GeneratorHelper extends sfModelGeneratorHelper
12
{
13
  public function getUrlForAction($action)
14
  {
15
    return 'list' == $action ? '<?php echo $this->params['route_prefix'] ?>' : '<?php echo $this->params['route_prefix'] ?>_'.$action;
16
  }
17
}