ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilMediaPoolSearch.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
15include_once 'Services/Search/classes/class.ilAbstractSearch.php';
16
18{
19 function &performSearch()
20 {
21 $this->setFields(array('title'));
22
23 $and = $this->__createAndCondition();
24 $locate = $this->__createLocateString();
25
26 $query = "SELECT mep_id,obj_id ".
27 $locate.
28 "FROM mep_tree JOIN mep_item ON child = obj_id ".
29 $and;
30
31 $res = $this->db->query($query);
32 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
33 {
34 $this->search_result->addEntry($row->mep_id,'mep',$this->__prepareFound($row),$row->obj_id);
35 }
37 }
38
39 public function performKeywordSearch()
40 {
41 $this->setFields(array('keyword'));
42
43 $and = $this->__createKeywordAndCondition();
44 $locate = $this->__createLocateString();
45
46
47 $query = "SELECT mep_id, child ".
48 $locate.
49 "FROM mep_item mi ".
50 "JOIN mep_tree ON mi.obj_id = child ".
51 "JOIN il_meta_keyword mk ON foreign_id = mk.obj_id ".
52 $and.
53 "AND obj_type = 'mob'";
54
55 $res = $this->db->query($query);
56 while($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT))
57 {
58 $this->search_result->addEntry($row->mep_id,'mep',$this->__prepareFound($row),$row->child);
59 }
61 }
62}
63?>
An exception for terminatinating execution or to throw for unit testing.
__createLocateString()
build locate string in case of AND search
setFields($a_fields)
Set fields to search.