root/trunk/plugins/sfPropelActAsLocalizableBehaviorPlugin/config/config.php

Revision 2, 0.8 kB (checked in by nperriault, 10 months ago)

First commit of the extracted code from production, I hope no passwd has been forgotten :-)

Line 
1 <?php
2 /*
3  * This file is part of the sfPropelActAsLocalizableBehavior package.
4  *
5  * (c) 2007 Nicolas Perriault
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10
11 sfPropelBehavior::registerHooks('sfPropelActAsLocalizableBehavior', array (
12   ':delete:post' => array('sfPropelActAsLocalizableBehavior', 'postDelete'),
13 ));
14
15
16 sfPropelBehavior::registerMethods('sfPropelActAsLocalizableBehavior', array (
17   array('sfPropelActAsLocalizableBehavior', 'getCoordinates'),
18   array('sfPropelActAsLocalizableBehavior', 'getLatitude'),
19   array('sfPropelActAsLocalizableBehavior', 'getLongitude'),
20   array('sfPropelActAsLocalizableBehavior', 'getLocalization'),
21   array('sfPropelActAsLocalizableBehavior', 'updateLocalization'),
22 ));
Note: See TracBrowser for help on using the browser.