Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-validator/src/Barcode/Upce.php
Строк: 36
<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace ZendValidatorBarcode;

class 
Upce extends AbstractAdapter
{
    
/**
     * Constructor for this barcode adapter
     */
    
public function __construct()
    {
        
$this->setLength(array(678));
        
$this->setCharacters('0123456789');
        
$this->setChecksum('gtin');
    }

    
/**
     * Overrides parent checkLength
     *
     * @param string $value Value
     * @return bool
     */
    
public function hasValidLength($value)
    {
        if (
strlen($value) != 8) {
            
$this->useChecksum(false);
        } else {
            
$this->useChecksum(true);
        }

        return 
parent::hasValidLength($value);
    }
}
Онлайн: 0
Реклама