2
0
forked from Wavyzz/dolibarr

WIP search component

This commit is contained in:
Laurent Destailleur
2020-01-26 22:02:31 +01:00
parent 30a5ab479f
commit 8ff19a2a0f
2 changed files with 20 additions and 1 deletions

View File

@@ -8021,4 +8021,23 @@ class Form
return -1;
}
}
/**
* Output the component to make advanced search criteries
*
* @param array $arrayofcriterias Array of available search criterias. Example: array($object->element => $object->fields, 'otherfamily' => otherarrayoffields, ...)
* @param array $search_component_params Array of selected search criterias
* @return string HTML component for advanced search
*/
public function searchComponent($arrayofcriterias, $search_component_params)
{
$ret = '';
return $ret;
}
}