1 : <?php
2 :
3 : /**
4 : * Dictionaries of Old French and Latin
5 : *
6 : * PHP 5
7 : *
8 : * @category Application
9 : * @package DicFro
10 : * @author Michel Corne <mcorne@yahoo.com>
11 : * @copyright 2008-2010 Michel Corne
12 : * @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License, version 3 (GPLv3)
13 : * @link http://www.micmap.org/dicfro
14 : */
15 :
16 1 : require_once 'Model/Query/GdfLike.php';
17 :
18 : /**
19 : * Queries the Vandaele database
20 : *
21 : * @category Application
22 : * @package DicFro
23 : * @author Michel Corne <mcorne@yahoo.com>
24 : * @copyright 2008-2010 Michel Corne
25 : * @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License, version 3 (GPLv3)
26 : */
27 :
28 1 : class Model_Query_Vandaele extends Model_Query_GdfLike
29 : {
30 : /**
31 : * Constructor
32 : *
33 : * @param string $directory the dictionaries directory
34 : * @return void
35 : */
36 : public function __construct($directory = '.')
37 : {
38 1 : parent::__construct($directory . '/vandaele');
39 1 : }
|