|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00025 require_once 'Zend/Validate/Barcode/AdapterAbstract.php'; 00026 00033 class Zend_Validate_Barcode_Code25 extends Zend_Validate_Barcode_AdapterAbstract 00034 { 00039 protected $_length = -1; 00040 00045 protected $_characters = '0123456789'; 00046 00051 protected $_checksum = '_code25'; 00052 00060 public function __construct() 00061 { 00062 $this->setCheck(false); 00063 } 00064 }