TYPO3 4.6 include extbase plugin with typoscript

旧巷老猫 提交于 2019-12-06 15:59:37

I think the problem is your action. Do you really have a randomPhotoSlideShowAction in your Controller? Also check if the specified pluginName is correct.

Please try to specify your index or list Action and see what happens.

action = index
switchableControllerActions {
    Photo {
        1 = index
    }
}

If your action is correct, make sure you are actually returning something from your action!

public function randomPhotoSlideShowAction(...) { 

    // [...]

    $this->view->assign('foo', 'bar');

    return $this->view->render();
}

Your code looks good, the only thing missing is the Controller part (as per naming convention) in

controller = PhotoController
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!