如何执行IndexPage Hook Contao

时间:2018-05-29 05:50:10

标签: indexing content-management-system contao

我需要从索引的Url中删除查询参数。为此我在扩展中编写了IndexPage钩子。当我点击重建索引时,它没有进入我的钩子。如何执行钩子?

的config.php

$GLOBALS['TL_HOOKS']['indexPage'][] = array('MyExtension\SearchIndex', 'myIndexPage');

SearchIndex.php

<?php
namespace MyExtension;

use Contao;

class SearchIndex{

    public function myIndexPage($strContent, $arrData, $arrSet) {

        var_dump($strContent);exit;
    }
}

0 个答案:

没有答案