4 require_once
"Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php";
26 return self::TYPE_TEXT;
39 if (is_numeric($max)) {
40 $def->setMaxLength($max);
60 if ($a_value !== null) {
61 $a_value = (int) $a_value;
63 $this->max_length = $a_value;
83 $this->multi = (bool) $a_value;
125 $res[$lng->txt(
"md_adv_text_multi")] = $lng->txt(
"yes");
144 $max->setMinValue(1);
145 $max->setMaxValue(4000);
154 $max->setDisabled(
true);
155 $multi->setDisabled(
true);
184 if ($a_key ==
"max") {
187 if ($a_key ==
"multi") {
188 $this->
setMulti($a_value !=
"" ? $a_value : null);
194 return $element->getText();
199 $this->
getADT()->setText($a_cdata);
204 switch ($a_ecs_type) {
206 $value = implode(
',', (
array) $a_value);
210 $value = (int) $a_value;
214 $value = (
string) $a_value;
219 $value = $a_value->{
'get' . ucfirst($a_sub_id)}();
225 $this->
getADT()->setText($value);
240 $a_text->setMulti($this->
isMulti(), 80, 6);
250 return $a_adt_search->getADT()->getText();
260 foreach ($a_records as $record) {
261 if ($record[
"sub_type"] ==
"-") {
263 $obj_ids[$record[
"obj_id"]] = $record;
267 $sql =
"SELECT obj_id,type" .
268 " FROM object_data" .
269 " WHERE " . $ilDB->in(
"obj_id", array_keys($obj_ids),
"",
"integer") .
270 " AND " . $ilDB->in(
"type", $a_object_types,
"",
"text");
271 $set = $ilDB->query($sql);
272 while (
$row = $ilDB->fetchAssoc($set)) {
274 foreach ($obj_ids[
$row[
"obj_id"]] as $field => $value) {
275 if (substr($field, 0, 5) ==
"found") {
276 $row[
"found"][$field] = $value;
299 include_once(
'Services/ADT/classes/ActiveRecord/class.ilADTActiveRecordByType.php');
307 if (
sizeof($objects)) {
getValueForXML(ilADT $element)
Representation of ECS EContent Time Place.
getQuotedWords($with_quotation=false)
setMulti($a_value)
Set multi-line.
AMD field abstract base class.
getADT()
Get ADT instance.
addPropertiesToXML(ilXmlWriter $a_writer)
importCustomDefinitionFormPostValues(ilPropertyFormGUI $a_form)
Import custom post values from definition form.
searchObjects(ilADTSearchBridge $a_adt_search, ilQueryParser $a_parser, array $a_object_types, $a_locate, $a_search_type)
Search.
static getInstance()
Get singleton.
getMaxLength()
Get max length.
static find($a_table, $a_type, $a_field_id, $a_condition, $a_additional_fields=null)
Find entries.
foreach($_POST as $key=> $value) $res
getSearchQueryParserValue(ilADTSearchBridge $a_adt_search)
importValueFromXML($a_cdata)
Create styles array
The data for the language used.
importXMLProperty($a_key, $a_value)
importFieldDefinition(array $a_def)
addCustomFieldToDefinitionForm(ilPropertyFormGUI $a_form, $a_disabled=false)
Add input elements to definition form.
ADT search bridge base class.
xmlElement($tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
importFromECS($a_ecs_type, $a_value, $a_sub_id)
parseSearchObjects(array $a_records, array $a_object_types)
getFieldDefinitionForTableGUI()
getSQLCondition($a_element_id)
Get SQL condition for current value(s)
getFieldId()
Get field_id.
setMaxLength($a_value)
Set max length.
prepareElementForEditor(ilADTFormBridge $a_text)