Stud.IP  5.4
SQLSearch Class Reference
Inheritance diagram for SQLSearch:
SearchType MvvQuickSearch PermissionSearch StandardSearch MyCoursesSearch TreeSearch

Public Member Functions

 __construct ($query, $title="", $avatarLike="")
 
 getTitle ()
 
 getAvatar ($id)
 
 getAvatarImageTag ($id, $size=Avatar::SMALL, $options=[])
 
 getResults ($input, $contextual_data=[], $limit=PHP_INT_MAX, $offset=0)
 
 includePath ()
 
- Public Member Functions inherited from SearchType
 getTitle ()
 
 getAvatar ($id)
 
 getAvatarImageTag ($id)
 
 getResults ($keyword, $contextual_data=[], $limit=PHP_INT_MAX, $offset=0)
 
 __toString ()
 
 includePath ()
 

Static Public Member Functions

static get ()
 

Protected Attributes

 $sql
 
 $avatarLike
 
 $title
 

Additional Inherited Members

- Data Fields inherited from SearchType
 $extendedLayout = false
 

Detailed Description

Class of type SearchType used for searches with QuickSearch (lib/classes/QuickSearch.class.php). You can search with a sql-syntax in the database. You just need to give in a query like for a PDB-prepare statement and at least the variable ":input" in the query (the :input will be replaced with the input of the QuickSearch userinput. [code] $search = new SQLSearch("SELECT username, Nachname " "FROM auth_user_md5 " . "WHERE Nachname LIKE :input ", _("Nachname suchen"), "username"); [/code]

Author
Rasmus Fuhse

Constructor & Destructor Documentation

◆ __construct()

__construct (   $query,
  $title = "",
  $avatarLike = "" 
)
Parameters
string$querySQL with at least ":input" as parameter
string$title
string$avatarLikein this search. array("input_name" => "placeholder_in_sql_query")
Returns
void

Member Function Documentation

◆ get()

static get ( )
static

returns an object of type SQLSearch with parameters to constructor

Parameters
string$querySQL with at least ":input" as parameter
string$title
string$avatarLikein this search. array("input_name" => "placeholder_in_sql_query")
Returns
SQLSearch

◆ getAvatar()

getAvatar (   $id)

returns an adress of the avatar of the searched item (if avatar enabled)

Parameters
string$idid of the item which can be username, user_id, Seminar_id or Institut_id
Returns
string adress of an image

◆ getAvatarImageTag()

getAvatarImageTag (   $id,
  $size = Avatar::SMALL,
  $options = [] 
)

returns an html tag of the image of the searched item (if avatar enabled)

Parameters
string$idid of the item which can be username, user_id, Seminar_id or Institut_id
string$sizeenum(NORMAL, SMALL, MEDIUM): size of the avatar
array$options
Returns
string like "<img src="...avatar.jpg" ... >"

◆ getResults()

getResults (   $input,
  $contextual_data = [],
  $limit = PHP_INT_MAX,
  $offset = 0 
)

returns the results of a search Use the contextual_data variable to send more variables than just the input to the SQL. QuickSearch for example sends all other variables of the same <form>-tag here.

Parameters
string$inputthe search-word(s)
array$contextual_dataan associative array with more variables
int$limitmaximum number of results (default: all)
int$offsetreturn results starting from this row (default: 0)
Returns
array array(array(), ...)

◆ getTitle()

getTitle ( )

returns the title/description of the searchfield

Returns
string title/description

◆ includePath()

includePath ( )

A very simple overwrite of the same method from SearchType class. returns the absolute path to this class for autoincluding this class.

Returns
string path to this class

Field Documentation

◆ $avatarLike

$avatarLike
protected

◆ $sql

$sql
protected

◆ $title

$title
protected

The documentation for this class was generated from the following file: