Home
last modified time | relevance | path

Searched refs:argumentDefinition (Results 1 – 21 of 21) sorted by relevance

/dports/devel/pear-ezc_ConsoleTools/ConsoleTools-1.6.1/docs/
H A Dtutorial_example_12_input_arguments.php10 $input->argumentDefinition = new ezcConsoleArguments();
12 $input->argumentDefinition[0] = new ezcConsoleArgument( "source" );
13 $input->argumentDefinition[0]->shorthelp = "The source directory.";
15 $input->argumentDefinition[1] = new ezcConsoleArgument( "destination" );
16 $input->argumentDefinition[1]->mandatory = false;
17 $input->argumentDefinition[1]->default = './';
19 $input->argumentDefinition[2] = new ezcConsoleArgument( "iterations" );
20 $input->argumentDefinition[2]->type = ezcConsoleInput::TYPE_INT;
21 $input->argumentDefinition[2]->shorthelp = "Number of iterations.";
40 echo "Source: {$input->argumentDefinition["source"]->value}\n";
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/Parser/
H A DTemplateParser.php571 $argumentDefinition = $argumentDefinitions[$argument];
572 …pingEnabled = $this->escapingEnabled && $this->isArgumentEscaped($viewHelper, $argumentDefinition);
573 …$isBoolean = $argumentDefinition->getType() === 'boolean' || $argumentDefinition->getType() === 'b…
590 …n isArgumentEscaped(ViewHelperInterface $viewHelper, ArgumentDefinition $argumentDefinition = null) argument
592 $hasDefinition = $argumentDefinition instanceof ArgumentDefinition;
593 …$isBoolean = $hasDefinition && ($argumentDefinition->getType() === 'boolean' || $argumentDefinitio…
595 $isArgumentEscaped = $hasDefinition && $argumentDefinition->getEscape() === true;
596 …on && method_exists($viewHelper, 'resolveContentArgumentName') && $argumentDefinition->getName() =…
775 $argumentDefinition = null;
777 $argumentDefinition = $argumentDefinitions[$arrayKey];
[all …]
/dports/www/typo3-9/typo3_src-9.5.31/vendor/typo3fluid/fluid/src/Core/Parser/
H A DTemplateParser.php571 $argumentDefinition = $argumentDefinitions[$argument];
572 …pingEnabled = $this->escapingEnabled && $this->isArgumentEscaped($viewHelper, $argumentDefinition);
573 …$isBoolean = $argumentDefinition->getType() === 'boolean' || $argumentDefinition->getType() === 'b…
590 …n isArgumentEscaped(ViewHelperInterface $viewHelper, ArgumentDefinition $argumentDefinition = null) argument
592 $hasDefinition = $argumentDefinition instanceof ArgumentDefinition;
593 …$isBoolean = $hasDefinition && ($argumentDefinition->getType() === 'boolean' || $argumentDefinitio…
595 $isArgumentEscaped = $hasDefinition && $argumentDefinition->getEscape() === true;
596 …on && method_exists($viewHelper, 'resolveContentArgumentName') && $argumentDefinition->getName() =…
775 $argumentDefinition = null;
777 $argumentDefinition = $argumentDefinitions[$arrayKey];
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/vendor/typo3fluid/fluid/src/Core/Parser/
H A DTemplateParser.php571 $argumentDefinition = $argumentDefinitions[$argument];
572 …pingEnabled = $this->escapingEnabled && $this->isArgumentEscaped($viewHelper, $argumentDefinition);
573 …$isBoolean = $argumentDefinition->getType() === 'boolean' || $argumentDefinition->getType() === 'b…
590 …n isArgumentEscaped(ViewHelperInterface $viewHelper, ArgumentDefinition $argumentDefinition = null) argument
592 $hasDefinition = $argumentDefinition instanceof ArgumentDefinition;
593 …$isBoolean = $hasDefinition && ($argumentDefinition->getType() === 'boolean' || $argumentDefinitio…
595 $isArgumentEscaped = $hasDefinition && $argumentDefinition->getEscape() === true;
596 …on && method_exists($viewHelper, 'resolveContentArgumentName') && $argumentDefinition->getName() =…
775 $argumentDefinition = null;
777 $argumentDefinition = $argumentDefinitions[$arrayKey];
[all …]
/dports/devel/pear-ezc_ConsoleTools/ConsoleTools-1.6.1/ezc/ConsoleTools/input/help_generators/
H A Dstandard.php197 if ( $this->input->argumentDefinition !== null )
199 foreach ( $this->input->argumentDefinition as $arg )
272 if ( $this->input->argumentDefinition === null )
362 foreach ( $this->input->argumentDefinition as $arg )
/dports/www/typo3-11/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/ViewHelper/
H A DViewHelperInvoker.php58 foreach ($expectedViewHelperArguments as $argumentName => $argumentDefinition) {
64 $evaluatedArguments[$argumentName] = $argumentDefinition->getDefaultValue();
/dports/www/typo3-9/typo3_src-9.5.31/vendor/typo3fluid/fluid/src/Core/ViewHelper/
H A DViewHelperInvoker.php58 foreach ($expectedViewHelperArguments as $argumentName => $argumentDefinition) {
64 $evaluatedArguments[$argumentName] = $argumentDefinition->getDefaultValue();
/dports/www/typo3-10/typo3_src-10.4.25/vendor/typo3fluid/fluid/src/Core/ViewHelper/
H A DViewHelperInvoker.php58 foreach ($expectedViewHelperArguments as $argumentName => $argumentDefinition) {
64 $evaluatedArguments[$argumentName] = $argumentDefinition->getDefaultValue();
/dports/devel/pear-ezc_ConsoleTools/ConsoleTools-1.6.1/ezc/ConsoleTools/
H A Dinput.php109 * @property ezcConsoleArguments $argumentDefinition Optional argument definition.
215 $this->argumentDefinition = null;
632 if ( $this->argumentDefinition !== null )
634 foreach ( $this->argumentDefinition as $argument )
791 if ( $this->argumentDefinition !== null )
1233 if ( $this->argumentDefinition === null || $this->argumentsAllowed() === false )
1244 foreach ( $this->argumentDefinition as $arg )
/dports/devel/svn2git/svn2git-1.0.18/src/
H A DCommandLineParser.cpp44 QString argumentDefinition; member in CommandLineParser::Private
139 argumentDefinition = QString::fromLatin1(defs); in setArgumentDefinition()
140 QStringList optionParts = argumentDefinition.split(QLatin1Char(' '), QString::SkipEmptyParts); in setArgumentDefinition()
264 + QLatin1Char(' ') + argumentDefinition); in parse()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Compiler/
H A DAutowirePass.php427 $argumentDefinition = new Definition($type);
428 $argumentDefinition->setPublic(false);
429 $argumentDefinition->setAutowired(true);
434 $this->processValue($argumentDefinition, true);
435 $this->container->setDefinition($argumentId, $argumentDefinition);
/dports/www/phpbb3/phpBB3/vendor/symfony/dependency-injection/Compiler/
H A DAutowirePass.php427 $argumentDefinition = new Definition($type);
428 $argumentDefinition->setPublic(false);
429 $argumentDefinition->setAutowired(true);
434 $this->processValue($argumentDefinition, true);
435 $this->container->setDefinition($argumentId, $argumentDefinition);
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Compiler/
H A DAutowirePass.php427 $argumentDefinition = new Definition($type);
428 $argumentDefinition->setPublic(false);
429 $argumentDefinition->setAutowired(true);
434 $this->processValue($argumentDefinition, true);
435 $this->container->setDefinition($argumentId, $argumentDefinition);
/dports/www/drupal8/drupal-8.9.20/vendor/symfony/dependency-injection/Compiler/
H A DAutowirePass.php427 $argumentDefinition = new Definition($type);
428 $argumentDefinition->setPublic(false);
429 $argumentDefinition->setAutowired(true);
434 $this->processValue($argumentDefinition, true);
435 $this->container->setDefinition($argumentId, $argumentDefinition);
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/symfony/dependency-injection/Compiler/
H A DAutowirePass.php427 $argumentDefinition = new Definition($type);
428 $argumentDefinition->setPublic(false);
429 $argumentDefinition->setAutowired(true);
434 $this->processValue($argumentDefinition, true);
435 $this->container->setDefinition($argumentId, $argumentDefinition);
/dports/www/typo3-11/typo3_src-11.5.7/vendor/typo3fluid/fluid/src/Core/Compiler/
H A DNodeConverter.php173 foreach ($arguments as $argumentName => $argumentDefinition) {
179 var_export($argumentDefinition->getDefaultValue(), true),
/dports/www/typo3-9/typo3_src-9.5.31/vendor/typo3fluid/fluid/src/Core/Compiler/
H A DNodeConverter.php173 foreach ($arguments as $argumentName => $argumentDefinition) {
179 var_export($argumentDefinition->getDefaultValue(), true),
/dports/www/typo3-10/typo3_src-10.4.25/vendor/typo3fluid/fluid/src/Core/Compiler/
H A DNodeConverter.php173 foreach ($arguments as $argumentName => $argumentDefinition) {
179 var_export($argumentDefinition->getDefaultValue(), true),
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/scheduler/Classes/Task/
H A DExecuteSchedulableCommandAdditionalFieldProvider.php192 $argumentDefinition = $command->getDefinition()->getArgument($argumentName);
197 if ($argumentDefinition->isArray()) {
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/scheduler/Classes/Task/
H A DExecuteSchedulableCommandAdditionalFieldProvider.php194 $argumentDefinition = $command->getDefinition()->getArgument($argumentName);
199 if ($argumentDefinition->isArray()) {
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/scheduler/Classes/Task/
H A DExecuteSchedulableCommandAdditionalFieldProvider.php184 $argumentDefinition = $command->getDefinition()->getArgument($argumentName);
189 if ($argumentDefinition->isArray()) {