ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilADTInternalLinkSearchBridgeSingle.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
12 {
13  const SQL_STRICT = 1;
14  const SQL_LIKE = 2;
15  const SQL_LIKE_END = 3;
16  const SQL_LIKE_START = 4;
17 
18 
24  protected function isValidADTDefinition(\ilADTDefinition $a_adt_def)
25  {
26  return $a_adt_def instanceof ilADTInternalLinkDefinition;
27  }
28 
29 
30  /*
31  * Add search property to form
32  */
33  public function addToForm()
34  {
35  $title = new ilTextInputGUI($this->getTitle(), $this->getElementId());
36  $title->setSize(255);
37  $this->addToParentElement($title);
38  }
39 
40 
47 
59 
77 
123 
This class represents a text property in a property form.
isValidADTDefinition(\ilADTDefinition $a_adt_def)
Is valid type.
ADT definition base class.
getElementId()
Get element id.
addToParentElement(ilFormPropertyGUI $a_field)
Add form field to parent element.