Ticket #171 (closed enhancement: duplicate)
Create aSlotActions and extend that for Slots instead of BaseaSlotActions
| Reported by: | spike | Owned by: | tboutell |
|---|---|---|---|
| Priority: | major | Milestone: | 1.5.1 |
| Component: | apostrophePlugin | Version: | 1.5 |
| Keywords: | slot, actions, extend | Cc: | team@… |
| Symfony version: | 1.4 |
Description
I'm trying to add a global action to the BaseaSlotActions? file but I obviously don't want to edit the one in the plugin. It makes sense for there to be a class like:
<?php
class aSlotActions extends BaseaSlotactions
{
}
?>
and then have slots extend that like:
class MyCustomSlotActions extends aSlotActions
{
...
}
Right now, it's like:
class MyCustomSlotActions extends BaseaSlotActions
{
...
}
So there's no clean way to extend the base actions file.
Change History
Note: See
TracTickets for help on using
tickets.

