/** * @return void */ public function initializeArguments() { parent::initializeArguments(); $this->registerArgument('theme', 'string', 'The name of a gallery theme', false); $this->registerArgument('imageVariant', 'string', 'The name of a defined resolution', false); $this->registerArgument('key', 'string', 'The key of meta data array', false); }
/** * Initialize arguments. * * @return void * @api */ public function initializeArguments() { parent::initializeArguments(); $this->registerArgument('node', 'object', 'Associative array with childnode objects'); $this->registerArgument('as', 'string', 'name of returned variable'); }
/** * Initialize arguments. * * @return void * @api */ public function initializeArguments() { parent::initializeArguments(); $this->registerArgument('node', 'object', 'Categories Array'); $this->registerArgument('as', 'string', 'Category Object'); }
/** * @return void */ public function initializeArguments() { parent::initializeArguments(); // @deprecated since 2.0 use the "image" argument instead $this->registerArgument('asset', AssetInterface::class, 'The image to be rendered - DEPRECATED, use the "image" argument instead', false); }
/** * @return void */ public function initializeArguments() { parent::initializeArguments(); // @deprecated since 2.0 use the "image" argument instead $this->registerArgument('asset', 'TYPO3\\Media\\Domain\\Model\\AssetInterface', 'The image to be rendered - DEPRECATED, use "image" argument instead', false); }
/** * Initialize arguments. * * @return void * @api */ public function initializeArguments() { parent::initializeArguments(); $this->registerArgument('contactIds', 'array', 'Id of Contact Person'); $this->registerArgument('as', 'string', 'name of returned variable'); }