|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00025 require_once 'Zend/Validate/Barcode/AdapterAbstract.php'; 00026 00033 class Zend_Validate_Barcode_Ean2 extends Zend_Validate_Barcode_AdapterAbstract 00034 { 00039 protected $_length = 2; 00040 00045 protected $_characters = '0123456789'; 00046 00054 public function __construct() 00055 { 00056 $this->setCheck(false); 00057 } 00058 }