File indexing completed on 2024-12-22 05:37:11
0001 <?php 0002 /** 0003 * Zend Framework 0004 * 0005 * LICENSE 0006 * 0007 * This source file is subject to the new BSD license that is bundled 0008 * with this package in the file LICENSE.txt. 0009 * It is also available through the world-wide-web at this URL: 0010 * http://framework.zend.com/license/new-bsd 0011 * If you did not receive a copy of the license and are unable to 0012 * obtain it through the world-wide-web, please send an email 0013 * to license@zend.com so we can send you a copy immediately. 0014 * 0015 * @category Zend 0016 * @package Zend_Validate 0017 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) 0018 * @license http://framework.zend.com/license/new-bsd New BSD License 0019 * @version $Id$ 0020 */ 0021 0022 /** 0023 * @see Zend_Validate_Barcode_AdapterAbstract 0024 */ 0025 // require_once 'Zend/Validate/Barcode/AdapterAbstract.php'; 0026 0027 /** 0028 * @category Zend 0029 * @package Zend_Validate 0030 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) 0031 * @license http://framework.zend.com/license/new-bsd New BSD License 0032 */ 0033 class Zend_Validate_Barcode_Ean8 extends Zend_Validate_Barcode_AdapterAbstract 0034 { 0035 /** 0036 * Allowed barcode lengths 0037 * @var integer 0038 */ 0039 protected $_length = array(7, 8); 0040 0041 /** 0042 * Allowed barcode characters 0043 * @var string 0044 */ 0045 protected $_characters = '0123456789'; 0046 0047 /** 0048 * Checksum function 0049 * @var string 0050 */ 0051 protected $_checksum = '_gtin'; 0052 0053 /** 0054 * Overrides parent checkLength 0055 * 0056 * @param string $value Value 0057 * @return boolean 0058 */ 0059 public function checkLength($value) 0060 { 0061 if (strlen($value) == 7) { 0062 $this->setCheck(false); 0063 } else { 0064 $this->setCheck(true); 0065 } 0066 0067 return parent::checkLength($value); 0068 } 0069 }