公共文件夹访问控制器功能中的typo3 php文件

时间:2015-09-22 12:41:31

标签: php typo3 typo3-6.2.x

从基于resource / public / php / file.php的php文件访问控制器函数是否有任何可能性

我想要的是这个php文件是我用它的特殊文件:

<img src="file.php"></img> 

我将禁用可读路径。所以这个php文件做了一些加密,需要连接到普通的控制器函数。

感谢

1 个答案:

答案 0 :(得分:7)

  

从基于resource / public / php / file.php的php文件访问控制器函数是否有任何可能性

是的,这是可能的,但因此你需要bootstrap TYPO3核心。或者,如果它是staticpublic方法,则可以直接调用它。

但在你的情况下,这似乎不是正确的做法。

假设您正在使用某种验证码,您应该考虑使用自己的page type来渲染dynamic images。这是一个有效的例子:

TypoScript设置

在TypoScript中,我们正在注册我们自己的page typ,并将其指向我们的extensioncontrolleraction

DynamicCaptchaImage = PAGE
DynamicCaptchaImage {

    typeNum = 1234

    10 = USER_INT
    10 {
        userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
        pluginName = Pi1
        extensionName = MyExtName
        vendorName = MyCompanyName
        controller = MyExtbaseController
        action = renderCaptchaImage
        # view =< plugin.tx_myextname.view  // you provide the view yourself
        # persistence =< plugin.tx_myextname.persistence // in case you need a repository you should uncomment it
        settings =< plugin.tx_myextname.settings
    }

    config {
        disableAllHeaderCode = 1
        additionalHeaders = Content-Type: image/png
        xhtml_cleaning = 0
        admPanel = 0
        debug = 0
    }
}

另请参阅:Registering a custom typeNum-based Controller access

<强>控制器

以下是controlleraction应如何显示的示例:

<?php
namespace MyCompanyName\MyExtName\Controller;

/**
 * MyExtbaseController
 */
class MyExtbaseController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController {

    /**
     * Render Captcha Image Action
     *
     * @return void
     */
    public function renderCaptchaImageAction() {

        // Send some headers
        header('Content-Type: image/png');

        // < do your magic stuff here >

        // Breaks the script because we've sent already some headers and want
        // to prevent that TYPO3 is adding another stuff (eg. for debugging purposes)
        // that can break the image from loading.
        // return FALSE; does not stop doing that!
        exit;
    }

}

另请参阅:Extbase wiki

访问控制器

现在我们已经配置了自定义page type,我们可以通过调用TypoScript设置中的page type来访问控制器。

EG。 http://www.example.com?type=1234指向renderCaptchaImageAction()中的MyExtbaseController

<强>流体

在Fluid中,您可以链接到您配置的page type

<img src="{f:link.page(pageType: 1234)}" />

另请参阅:Fluid wiki

<强> Realurl

如果您使用的是扩展程序realurl,则可以通过以下方式将?type=1234更改为captcha.png

// [...]
'fileName' => array(
    'index' => array(
        'captcha.png' => array(
            'keyValues' => array(
                'type' => 1234,
            ),
        ),
    ),
),
// [...]

另请参阅:Realurl wiki