Contao\Ajax::executePostActionsHook PHP Метод

executePostActionsHook() защищенный Метод

Execute the post actions hook
protected executePostActionsHook ( DataContainer $dc )
$dc DataContainer
    protected function executePostActionsHook(DataContainer $dc)
    {
        if (isset($GLOBALS['TL_HOOKS']['executePostActions']) && is_array($GLOBALS['TL_HOOKS']['executePostActions'])) {
            foreach ($GLOBALS['TL_HOOKS']['executePostActions'] as $callback) {
                $this->import($callback[0]);
                $this->{$callback[0]}->{$callback[1]}($this->strAction, $dc);
            }
        }
    }