Created
October 21, 2008 16:02
-
-
Save ubermuda/18337 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* network actions. | |
* | |
* @package 1510801 | |
* @subpackage network | |
* @author Your name here | |
* @version SVN: $Id: actions.class.php 9301 2008-05-27 01:08:46Z dwhittle $ | |
*/ | |
class networkActions extends sfActions | |
{ | |
/** | |
* Executes index action | |
* | |
* @param sfRequest $request A request object | |
*/ | |
public function executeIndex($request) | |
{ | |
$this->dealers = $this->getRoute()->getObjects(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# network | |
network: | |
url: /network | |
class: sfPropelRoute | |
options: { model: zdDealer, list: dealers, type: list } | |
param: { module: network, action: index } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment