1: <?php
 2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 
13: class Ansel_Test extends Horde_Test
14: {
15:     16: 17: 18: 19: 
20:     protected $_moduleList = array(
21:         'facedetect' => array(
22:             'descrip' => 'Facedetect Face Detection Library',
23:             'required' => false,
24:             'error' => 'Ansel can make use of the Facedetect PHP extension for automatically detecting human faces in images.'
25:         ),
26:         'libpuzzle' => array(
27:             'descrip' => 'Puzzle Library',
28:             'required' => false,
29:             'error' => 'Ansel can make use of the libpuzzle PHP extension for finding similar images based on image content.'
30:         ),
31:         'zip' => array(
32:             'descrip' => 'Zip Support',
33:             'required' => false,
34:             'error' => 'Ansel can make use of PHP\'s Zip extension for more efficiently processing uploaded ZIP files.'
35:         )
36:     );
37: 
38:     39: 40: 41: 42: 
43:     protected $_settingsList = array();
44: 
45:     46: 47: 48: 49: 
50:     protected $_pearList = array();
51: 
52:     53: 54: 55: 56: 
57:     protected $_fileList = array(
58:         'config/conf.php' => null,
59:     );
60: 
61:     62: 63: 64: 65: 
66:     protected $_appList = array(
67:         'agora' => array(
68:             'error' => 'Agora provides the ability for users to comment on images.',
69:             'version' => '1.0'
70:         )
71:     );
72: 
73:     74: 75: 76: 77: 
78:     public function appTests()
79:     {
80:     }
81: 
82: }
83: