Skip to content
Grav 2.0 is officially stable. Read the announcement →
Plugins

Admin Event Hook for Flex Object

Started by Christiana 5 years ago · 3 replies · 783 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 Mathieu Lecouturier, 6 days ago
3 131 3 days ago
Plugins · by Slebeig, 4 weeks ago
1 296 4 weeks ago
Plugins · by Rene, 2 months ago
2 455 2 months ago
Plugins · by Xavier, 2 months ago
2 373 2 months ago
Plugins · by Luka Prinčič, 7 years ago
3 1597 2 months ago