✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium290.web-hosting.com ​🇻​♯➤ 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 63.250.38.37 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.165
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/php55/usr/share/pear/Symfony/Component/Form//FormInterface.php
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Form;

/**
 * A form group bundling multiple forms in a hierarchical structure.
 *
 * @author Bernhard Schussek <bschussek@gmail.com>
 */
interface FormInterface extends \ArrayAccess, \Traversable, \Countable
{
    /**
     * Sets the parent form.
     *
     * @param  FormInterface|null $parent The parent form or null if it's the root.
     *
     * @return FormInterface The form instance
     *
     * @throws Exception\AlreadySubmittedException If the form has already been submitted.
     * @throws Exception\LogicException        When trying to set a parent for a form with
     *                                         an empty name.
     */
    public function setParent(FormInterface $parent = null);

    /**
     * Returns the parent form.
     *
     * @return FormInterface|null The parent form or null if there is none.
     */
    public function getParent();

    /**
     * Adds or replaces a child to the form.
     *
     * @param FormInterface|string|integer $child   The FormInterface instance or the name of the child.
     * @param string|null                  $type    The child's type, if a name was passed.
     * @param array                        $options The child's options, if a name was passed.
     *
     * @return FormInterface The form instance
     *
     * @throws Exception\AlreadySubmittedException   If the form has already been submitted.
     * @throws Exception\LogicException          When trying to add a child to a non-compound form.
     * @throws Exception\UnexpectedTypeException If $child or $type has an unexpected type.
     */
    public function add($child, $type = null, array $options = array());

    /**
     * Returns the child with the given name.
     *
     * @param string $name The name of the child
     *
     * @return FormInterface The child form
     *
     * @throws \OutOfBoundsException If the named child does not exist.
     */
    public function get($name);

    /**
     * Returns whether a child with the given name exists.
     *
     * @param string $name The name of the child
     *
     * @return Boolean
     */
    public function has($name);

    /**
     * Removes a child from the form.
     *
     * @param  string $name The name of the child to remove
     *
     * @return FormInterface The form instance
     *
     * @throws Exception\AlreadySubmittedException If the form has already been submitted.
     */
    public function remove($name);

    /**
     * Returns all children in this group.
     *
     * @return FormInterface[] An array of FormInterface instances
     */
    public function all();

    /**
     * Returns all errors.
     *
     * @return FormError[] An array of FormError instances that occurred during validation
     */
    public function getErrors();

    /**
     * Updates the form with default data.
     *
     * @param  mixed $modelData The data formatted as expected for the underlying object
     *
     * @return FormInterface The form instance
     *
     * @throws Exception\AlreadySubmittedException If the form has already been submitted.
     * @throws Exception\LogicException        If listeners try to call setData in a cycle. Or if
     *                                         the view data does not match the expected type
     *                                         according to {@link FormConfigInterface::getDataClass}.
     */
    public function setData($modelData);

    /**
     * Returns the data in the format needed for the underlying object.
     *
     * @return mixed
     */
    public function getData();

    /**
     * Returns the normalized data of the field.
     *
     * @return mixed When the field is not submitted, the default data is returned.
     *               When the field is submitted, the normalized submitted data is
     *               returned if the field is valid, null otherwise.
     */
    public function getNormData();

    /**
     * Returns the data transformed by the value transformer.
     *
     * @return mixed
     */
    public function getViewData();

    /**
     * Returns the extra data.
     *
     * @return array The submitted data which do not belong to a child
     */
    public function getExtraData();

    /**
     * Returns the form's configuration.
     *
     * @return FormConfigInterface The configuration.
     */
    public function getConfig();

    /**
     * Returns whether the form is submitted.
     *
     * @return Boolean true if the form is submitted, false otherwise
     */
    public function isSubmitted();

    /**
     * Returns the name by which the form is identified in forms.
     *
     * @return string The name of the form.
     */
    public function getName();

    /**
     * Returns the property path that the form is mapped to.
     *
     * @return \Symfony\Component\PropertyAccess\PropertyPathInterface The property path.
     */
    public function getPropertyPath();

    /**
     * Adds an error to this form.
     *
     * @param  FormError $error
     *
     * @return FormInterface The form instance
     */
    public function addError(FormError $error);

    /**
     * Returns whether the form and all children are valid.
     *
     * If the form is not submitted, this method always returns false.
     *
     * @return Boolean
     */
    public function isValid();

    /**
     * Returns whether the form is required to be filled out.
     *
     * If the form has a parent and the parent is not required, this method
     * will always return false. Otherwise the value set with setRequired()
     * is returned.
     *
     * @return Boolean
     */
    public function isRequired();

    /**
     * Returns whether this form is disabled.
     *
     * The content of a disabled form is displayed, but not allowed to be
     * modified. The validation of modified disabled forms should fail.
     *
     * Forms whose parents are disabled are considered disabled regardless of
     * their own state.
     *
     * @return Boolean
     */
    public function isDisabled();

    /**
     * Returns whether the form is empty.
     *
     * @return Boolean
     */
    public function isEmpty();

    /**
     * Returns whether the data in the different formats is synchronized.
     *
     * @return Boolean
     */
    public function isSynchronized();

    /**
     * Initializes the form tree.
     *
     * Should be called on the root form after constructing the tree.
     *
     * @return FormInterface The form instance.
     */
    public function initialize();

    /**
     * Inspects the given request and calls {@link submit()} if the form was
     * submitted.
     *
     * Internally, the request is forwarded to the configured
     * {@link RequestHandlerInterface} instance, which determines whether to
     * submit the form or not.
     *
     * @param mixed $request The request to handle.
     *
     * @return FormInterface The form instance.
     */
    public function handleRequest($request = null);

    /**
     * Submits data to the form, transforms and validates it.
     *
     * @param null|string|array $submittedData The submitted data.
     * @param Boolean           $clearMissing  Whether to set fields to NULL
     *                                         when they are missing in the
     *                                         submitted data.
     *
     * @return FormInterface The form instance
     *
     * @throws Exception\AlreadySubmittedException If the form has already been submitted.
     */
    public function submit($submittedData, $clearMissing = true);

    /**
     * Returns the root of the form tree.
     *
     * @return FormInterface The root of the tree
     */
    public function getRoot();

    /**
     * Returns whether the field is the root of the form tree.
     *
     * @return Boolean
     */
    public function isRoot();

    /**
     * Creates a view.
     *
     * @param FormView $parent The parent view
     *
     * @return FormView The view
     */
    public function createView(FormView $parent = null);
}


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
3 Mar 2024 10.54 PM
root / root
0755
Exception
--
3 Mar 2024 10.54 PM
root / root
0755
Extension
--
3 Mar 2024 10.54 PM
root / root
0755
Guess
--
3 Mar 2024 10.54 PM
root / root
0755
Resources
--
3 Mar 2024 10.54 PM
root / root
0755
Test
--
3 Mar 2024 10.54 PM
root / root
0755
Util
--
3 Mar 2024 10.54 PM
root / root
0755
AbstractExtension.php
4.771 KB
18 Dec 2019 11.24 AM
root / root
0644
AbstractRendererEngine.php
7.455 KB
18 Dec 2019 11.24 AM
root / root
0644
AbstractType.php
1.055 KB
18 Dec 2019 11.24 AM
root / root
0644
AbstractTypeExtension.php
0.97 KB
18 Dec 2019 11.24 AM
root / root
0644
Button.php
8.619 KB
18 Dec 2019 11.24 AM
root / root
0644
ButtonBuilder.php
18.089 KB
18 Dec 2019 11.24 AM
root / root
0644
ButtonTypeInterface.php
0.451 KB
18 Dec 2019 11.24 AM
root / root
0644
CallbackTransformer.php
2.088 KB
18 Dec 2019 11.24 AM
root / root
0644
ClickableInterface.php
0.546 KB
18 Dec 2019 11.24 AM
root / root
0644
DataMapperInterface.php
1.104 KB
18 Dec 2019 11.24 AM
root / root
0644
DataTransformerInterface.php
3.085 KB
18 Dec 2019 11.24 AM
root / root
0644
Form.php
34.048 KB
18 Dec 2019 11.24 AM
root / root
0644
FormBuilder.php
7.687 KB
18 Dec 2019 11.24 AM
root / root
0644
FormBuilderInterface.php
2.28 KB
18 Dec 2019 11.24 AM
root / root
0644
FormConfigBuilder.php
21.172 KB
18 Dec 2019 11.24 AM
root / root
0644
FormConfigBuilderInterface.php
8.463 KB
18 Dec 2019 11.24 AM
root / root
0644
FormConfigInterface.php
6.286 KB
18 Dec 2019 11.24 AM
root / root
0644
FormError.php
2.503 KB
18 Dec 2019 11.24 AM
root / root
0644
FormEvent.php
1.218 KB
18 Dec 2019 11.24 AM
root / root
0644
FormEvents.php
1.113 KB
18 Dec 2019 11.24 AM
root / root
0644
FormExtensionInterface.php
1.629 KB
18 Dec 2019 11.24 AM
root / root
0644
FormFactory.php
5.103 KB
18 Dec 2019 11.24 AM
root / root
0644
FormFactoryBuilder.php
3.524 KB
18 Dec 2019 11.24 AM
root / root
0644
FormFactoryBuilderInterface.php
2.986 KB
18 Dec 2019 11.24 AM
root / root
0644
FormFactoryInterface.php
4.145 KB
18 Dec 2019 11.24 AM
root / root
0644
FormInterface.php
8.133 KB
18 Dec 2019 11.24 AM
root / root
0644
FormRegistry.php
4.642 KB
18 Dec 2019 11.24 AM
root / root
0644
FormRegistryInterface.php
1.408 KB
18 Dec 2019 11.24 AM
root / root
0644
FormRenderer.php
11.674 KB
18 Dec 2019 11.24 AM
root / root
0644
FormRendererEngineInterface.php
6.897 KB
18 Dec 2019 11.24 AM
root / root
0644
FormRendererInterface.php
3.202 KB
18 Dec 2019 11.24 AM
root / root
0644
FormTypeExtensionInterface.php
2.075 KB
18 Dec 2019 11.24 AM
root / root
0644
FormTypeGuesserChain.php
2.813 KB
18 Dec 2019 11.24 AM
root / root
0644
FormTypeGuesserInterface.php
2.119 KB
18 Dec 2019 11.24 AM
root / root
0644
FormTypeInterface.php
3.146 KB
18 Dec 2019 11.24 AM
root / root
0644
FormView.php
3.441 KB
18 Dec 2019 11.24 AM
root / root
0644
Forms.php
5.761 KB
18 Dec 2019 11.24 AM
root / root
0644
NativeRequestHandler.php
5.48 KB
18 Dec 2019 11.24 AM
root / root
0644
PreloadedExtension.php
2.263 KB
18 Dec 2019 11.24 AM
root / root
0644
RequestHandlerInterface.php
0.652 KB
18 Dec 2019 11.24 AM
root / root
0644
ResolvedFormType.php
7.482 KB
18 Dec 2019 11.24 AM
root / root
0644
ResolvedFormTypeFactory.php
0.643 KB
18 Dec 2019 11.24 AM
root / root
0644
ResolvedFormTypeFactoryInterface.php
1.271 KB
18 Dec 2019 11.24 AM
root / root
0644
ResolvedFormTypeInterface.php
3.229 KB
18 Dec 2019 11.24 AM
root / root
0644
ReversedTransformer.php
1.227 KB
18 Dec 2019 11.24 AM
root / root
0644
SubmitButton.php
1.11 KB
18 Dec 2019 11.24 AM
root / root
0644
SubmitButtonBuilder.php
0.609 KB
18 Dec 2019 11.24 AM
root / root
0644
SubmitButtonTypeInterface.php
0.463 KB
18 Dec 2019 11.24 AM
root / root
0644
autoloader.php
0.326 KB
18 Dec 2019 11.24 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF