1: <?php
2: /**
3: * Ansel_Search_exif Provides an interface for searching image exif data.
4: *
5: * Copyright 2008-2012 Horde LLC (http://www.horde.org/)
6: *
7: * See the enclosed file COPYING for license information (GPL). If you
8: * did not receive this file, see http://www.horde.org/licenses/gpl.
9: *
10: * @author Michael J. Rubinsky <mrubinsk@horde.org>
11: * @package Ansel
12: */
13: class Ansel_Search_exif {
14:
15: /**
16: * Constructor
17: *
18: * @param array $params
19: * @return Ansel_Search_exif
20: */
21: public function __construct($params = array())
22: {
23: $this->_type = 'exif';
24: }
25:
26: /**
27: * retrieve a slice of the current search
28: *
29: * @param unknown_type $page
30: * @param unknown_type $perpage
31: */
32: function getSlice($page, $perpage)
33: {
34: }
35:
36: /**
37: * Get the total number of resources that match
38: */
39: function count()
40: {
41: }
42: }
43: