[TYPO3-dev] Re: Change calling order of hooks

Andrey Kor akoryak at gmail.com
Sat Dec 24 12:01:59 CET 2016


Hi Guys,

In the Typo3 6.2 the try with " 'priority' => 'top', // 'bottom' " didn't help. The solution was to use "depends" in the file ext_emconf.php of your ext. E.g.:

$EM_CONF[$_EXTKEY] = array(
    ...
    'constraints' => array(
        ....
        'depends' => array(
            ....
            'ke_search' => '',
            'ke_search_premium' => '',
            '_name_of_ext_which_hook_should_be_called_before_yours_hook_' => ''
        },
        ....
    },
    ....
);

Best regards,
Andrey



More information about the TYPO3-dev mailing list