13 lines
342 B
PHP
13 lines
342 B
PHP
<?php
|
|
sfPropelBehavior::registerHooks('stPropelSeoUrlBehavior', array(
|
|
':save:pre' => array('stPropelSeoUrlBehavior', 'preSave'),
|
|
':save:post' => array('stPropelSeoUrlBehavior', 'postSave'),
|
|
));
|
|
|
|
sfPropelBehavior::registerMethods('stPropelSeoUrlBehavior', array (
|
|
array (
|
|
'stPropelSeoUrlBehavior',
|
|
'getFriendlyUrl'
|
|
),
|
|
));
|