Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つのプラグインを含む拡張機能があり、両方から getVars にアクセスする必要があります。
$this->request->getArguments();
上記のコードは、もちろん、現在のプラグインの変数のみを提供します。
別のプラグインから Vars にアクセスする方法を知っている人はいますか?
どうもありがとう!
乾杯、
ルフィ
拡張機能内では、他の拡張機能のリクエスト引数にアクセスできません。これは、古い方法を使用してのみ可能です
$_REQUESTまた\TYPO3\CMS\Core\Utility\GeneralUtility::_GP("varname");
$_REQUEST
\TYPO3\CMS\Core\Utility\GeneralUtility::_GP("varname");
チェックアウト: \TYPO3\CMS\Core\Utility\DebugUtility::debug($_REQUEST);正しい配列キーと var 名を取得します。
\TYPO3\CMS\Core\Utility\DebugUtility::debug($_REQUEST);