Ok, I've done that :
lib/myCommonActions.class.php:
------------------------------
<?php
class myCommonActions extends sfActions {
public function executeCommon() {
echo 'ici';
return true;
}
}
apps/myapp/modules/mymodule/actions/actions.class.php:
------------------------------------------------------
<?php
class pageActions extends myCommonActions {
public function executeAction1() {
echo 'ok1';
exit;
}
public function executeAction2() {
echo 'ok2';
exit;
}
}
And when I call my page, I've only the 'ok1' or 'ok2' output on my
screen...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---