スケジューラ タスク内にフロントエンド Web サイトへのリンクを作成する必要があります。検索して見回したところ、TSFE を開始するサンプル スクリプトが見つかりました。その後、tslib_cObj を開始していくつかのリンクを作成できます。と思いました。
しかし、$cObj->typoLink_URL(1); を使用してタイポリンクを作成しようとするとすぐに、再帰エラーが発生します。フェ。または、タイポリンクを作成できるその他の方法。
以下は、フロントエンドの拡張機能内で作業する場合と同様に、$GLOBALS 内で TSFE を開始するために使用するスクリプトです。
<?php
function initTSFE($pageUid = 1, $overrule = FALSE) {
// declare
$temp_TSFEclassName = t3lib_div::makeInstanceClassName('tslib_fe');
// begin
if (!is_object($GLOBALS['TT']) || $overrule === TRUE) {
$GLOBALS['TT'] = new t3lib_timeTrack;
$GLOBALS['TT']->start();
}
if ((!is_object($GLOBALS['TSFE']) || $overrule === TRUE) && is_int($pageUid)) {
// builds TSFE object
$GLOBALS['TSFE'] = new $temp_TSFEclassName($GLOBALS['TYPO3_CONF_VARS'],
$pageUid, $type=0, $no_cache=0, $cHash='', $jumpurl='', $MP='', $RDCT='');
// builds rootline
$GLOBALS['TSFE']->sys_page = t3lib_div::makeInstance('t3lib_pageSelect');
$rootLine = $GLOBALS['TSFE']->sys_page->getRootLine($pageUid);
// init template
$GLOBALS['TSFE']->tmpl = t3lib_div::makeInstance('t3lib_tsparser_ext');
$GLOBALS['TSFE']->tmpl->tt_track = 0;// Do not log time-performance information
$GLOBALS['TSFE']->tmpl->init();
// this generates the constants/config + hierarchy info for the template.
$GLOBALS['TSFE']->tmpl->runThroughTemplates($rootLine, $start_template_uid=0);
$GLOBALS['TSFE']->tmpl->generateConfig();
$GLOBALS['TSFE']->tmpl->loaded=1;
// get config array and other init from pagegen
$GLOBALS['TSFE']->getConfigArray();
$GLOBALS['TSFE']->linkVars = ''.$GLOBALS['TSFE']->config['config']['linkVars'];
if ($GLOBALS['TSFE']->config['config']['simulateStaticDocuments_pEnc_onlyP']) {
foreach (t3lib_div::trimExplode(',',$GLOBALS['TSFE']->config['config']['simulateStaticDocuments_pEnc_onlyP'],1) as $temp_p) {
$GLOBALS['TSFE']->pEncAllowedParamNames[$temp_p]=1;
}
}
// builds a cObj
$GLOBALS['TSFE']->newCObj();
}
}
スケジューラタスクでやろうとしていることは次のとおりです。
<?php
public function execute() {
$this->initTSFE();
$cObj = t3lib_div::makeInstance('tslib_cObj');
var_dump($cObj->getTypoLink_URL(1));exit;
}
これは、スケジューラを介してこのタスクを実行すると、次の結果を示しています: http://i.imgur.com/DHzys.png
どんな助けでも大歓迎です=)
注: getTypoLink_URL 内の 1 の値は、Typo3 のページとして存在します。