Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Admin Event Hook for Flex Object

Started by Christiana 5 years ago · 3 replies · 853 views
5 years ago

Hello!

Can you give me the correct Admin Event Hook that I can use to intervene when saving Flex Objects to extend the functionality in my plugin? The "onAdminSave" event does not work for me at this point.
I am looking forward to help!

Greetings, Christiana

5 years ago

I think I found it. It is onFlexAfterSave(), right?

5 years ago

@gdrgdr : I used onFlexAfterSave() function to solve my issue.

PHP
    public static function getSubscribedEvents() {
        return [
            'onFlexAfterSave'  => ['onFlexAfterSave', 0],
        ];
    }

    /**
     * When flex object is saved
     */
    public function onFlexAfterSave(Event $event)
    {
        $type = $event['type'];
        $object = $event['object'];
        //set commit message for flex objects
        if($type === 'flex'){
            //my functions here
        }
    }
5 years ago

@christiana83, Thanks for the follow up on you own question.

NB. The reply you respond to is however being flagged as spam.

Suggested topics

Topic Participants Replies Views Activity
Plugins · by complanar, 2 weeks ago
2 250 4 days ago
Plugins · by Vladimir Novak, 1 month ago
3 594 1 month ago
Plugins · by Mathieu Lecouturier, 2 months ago
3 417 2 months ago
Plugins · by Slebeig, 2 months ago
1 530 2 months ago
Plugins · by Rene, 3 months ago
2 731 3 months ago