Difference between revisions of "Field settings.php"

From ARK
Jump to: navigation, search
(Common/Obligatory Attributes)
(Examples)
 
(13 intermediate revisions by 4 users not shown)
Line 9: Line 9:
 
*'''dataclass''' = This tells the system what [[Data Class]] the field is.
 
*'''dataclass''' = This tells the system what [[Data Class]] the field is.
 
*'''classtype''' = This tells the system what [[Classtype]] the field is.
 
*'''classtype''' = This tells the system what [[Classtype]] the field is.
 +
 +
There is not currently an ARK function to create new classtypes.  In order to add a new classtype, please access the database using PHPMyAdmin and add the classtype directly in the cor_lut_classtype table (eg. cor_lut_actiontype, cor_lut_datetype, etc...).
 +
 +
====Sorting====
 +
As of v0.8 fields now have the option of being made 'sortable' in the data view (search). In order to allow for ascending and descending sorting on fields a 'field_id' must be added to the fields of interest, rendering them sortable in the search results table view.
 +
 +
*'''field_id''' = This is set to the name of the field, i.e. for field 'conf_field_textdesc', the 'field_id' => 'conf_field_textdesc'
  
 
====Alias Settings====
 
====Alias Settings====
  
The alias for the field requires the following 3 attributes:
+
The alias for the field requires the following 4 attributes:
  
 
*'''alias_tbl''' = the table for the getAlias call
 
*'''alias_tbl''' = the table for the getAlias call
Line 24: Line 31:
  
 
*'''editable''' = set TRUE to process this field in forms set FALSE for display only
 
*'''editable''' = set TRUE to process this field in forms set FALSE for display only
*'''hidden''' = set true to make the field <input type="hidden" />
+
*'''hidden''' = 1/TRUE | 0/FALSE/blank | string (see below)
 
*'''add_validation''' = validation rules for this field when on an add routine
 
*'''add_validation''' = validation rules for this field when on an add routine
 
*'''edt_validation''' = validation rules for this field when on an edt routine
 
*'''edt_validation''' = validation rules for this field when on an edt routine
 +
 +
=====editable=====
 +
This is to with how the system processes As of v1.1 this variable only affects the way update_db processes fields - not the user interface.
 +
*'''1/TRUE''' - handles field as normal
 +
*'''0/FALSE''' - update_db will ignore this field (e.g. options field)
 +
 +
=====hidden=====
 +
This variable is processed by frmElem() and is a setting which allows admins to a hide a given field from user input. If hidden a default needs to be supplied so that the input is supplied with a variable. The only dataclasses that has implemented this option as of v1.1 are xmi and itemkey. Variable will be ignored on all other dataclasses, but still obligatory as this will implemented in the future.
 +
*'''1/TRUE''' - field is hidden, input type = hidden (needs default supplied, as mentioned above)
 +
*'''0/FALSE''' - user input form displayed as normal
 +
*'''string''' - nname which adds the markup for label displayed in form, functions the same as TRUE
 +
 +
====Optional Settings====
 +
*'''field_op_default''' = 0/FALSE/blank/unset | string
 +
Processed by frmElem() but only implemented on itemkeys as of v1.1
 +
*'''0/FALSE/blank/unset''' - input displayed as normal
 +
*'''string''' - string displayed as default within field, e.g. next
  
 
====Examples====
 
====Examples====
Line 33: Line 57:
 
<pre>$conf_field_desc =
 
<pre>$conf_field_desc =
 
     array(
 
     array(
 +
        'field_id' => 'conf_field_desc',
 
         'dataclass' => 'txt',
 
         'dataclass' => 'txt',
 
         'classtype' => 'desc',
 
         'classtype' => 'desc',
         'alias_tbl' => 'cor_lut_txttype',
+
         'aliasinfo' => FALSE,
        'alias_col' => 'txttype',
 
        'alias_src_key' => 'desc',
 
        'alias_type' => '1',
 
 
         'editable' => TRUE,
 
         'editable' => TRUE,
 
         'hidden' => FALSE,
 
         'hidden' => FALSE,
Line 50: Line 72:
 
$conf_field_samplecondition =
 
$conf_field_samplecondition =
 
     array(
 
     array(
 +
        'field_id' => 'conf_field_samplecondition',
 
         'dataclass' => 'attr',
 
         'dataclass' => 'attr',
 
         'classtype' => 'samplecondition',
 
         'classtype' => 'samplecondition',
         'alias_tbl' => 'cor_lut_attributetype',
+
         'aliasinfo' => FALSE,
        'alias_col' => 'attributetype',
 
        'alias_src_key' => 'sampleconditions',
 
        'alias_type' => '1',
 
        //'alias_classtype' => 'Condition',
 
 
         'editable' => TRUE,
 
         'editable' => TRUE,
 
         'hidden' => FALSE,
 
         'hidden' => FALSE,
Line 68: Line 87:
 
$conf_field_total =
 
$conf_field_total =
 
     array(
 
     array(
 +
        'field_id' => 'conf_field_total',
 
         'dataclass' => 'number',
 
         'dataclass' => 'number',
 
         'classtype' => 'total',
 
         'classtype' => 'total',
         'alias_tbl' => 'cor_lut_numbertype',
+
         'aliasinfo' => FALSE,
        'alias_col' => 'numbertype',
 
        'alias_src_key' => 'total',
 
        'alias_type' => '1',
 
 
         'editable' => TRUE,
 
         'editable' => TRUE,
 
         'hidden' => FALSE,
 
         'hidden' => FALSE,
 
         'add_validation' => $number_add_validation,
 
         'add_validation' => $number_add_validation,
 
         'edt_validation' => $number_edt_validation
 
         'edt_validation' => $number_edt_validation
 +
);
 +
</pre>
 +
 +
An example of a standard date field:
 +
<pre>
 +
$conf_field_issuedon =
 +
    array(
 +
        'field_id' => 'conf_field_issuedon',
 +
        'dataclass' => 'date',
 +
        'datestyle' => 'dd,mm,yr',
 +
        'classtype' => 'issuedon',
 +
        'aliasinfo' => FALSE,
 +
        'editable' => TRUE,
 +
        'hidden' => FALSE,
 +
        'add_validation' => $date_add_validation,
 +
        'edt_validation' => $date_edt_validation
 +
);
 +
</pre>
 +
 +
An example of a standard span field:
 +
<pre>
 +
$conf_field_sameas =
 +
  array(
 +
      'field_id' => 'conf_field_sameas',
 +
      'dataclass' => 'span',
 +
      'classtype' => 'sameas',
 +
      'aliasinfo' => FALSE,
 +
      'editable' => TRUE,
 +
      'hidden' => FALSE,
 +
      'add_validation' => $span_add_validation,
 +
      'edt_validation' => $span_edt_validation
 +
);
 +
</pre>
 +
 +
An example of a standard xmi field:
 +
<pre>
 +
$conf_field_plnxmicxt =
 +
    array(
 +
        'field_id' => 'conf_field_plnxmicxt',
 +
        'dataclass' => 'xmi',
 +
        'classtype' => 'xmi_list',
 +
        'aliasinfo' =>
 +
            array(
 +
                'alias_tbl' => 'cor_tbl_module',
 +
                'alias_col' => 'itemkey',
 +
                'alias_src_key' => 'pln_cd',
 +
                'alias_type' => '1',
 +
        ),
 +
        'module' => 'cxt',
 +
        'xmi_mod' => 'pln', 
 +
        'force_var_itemkey' => 'pln_cd',
 +
        'editable' => TRUE,
 +
        'hidden' => FALSE,
 +
        'add_validation' => $xmi_add_validation,
 +
        'edt_validation' => $xmi_edt_validation
 +
);
 +
</pre>
 +
 +
And finally, an example of a standard file field:
 +
<pre>
 +
$conf_field_file =
 +
  array(
 +
      'field_id' => 'conf_field_file',
 +
      'dataclass' => 'file',
 +
      'classtype' => 'file',
 +
      'aliasinfo' => FALSE,
 +
      'editable' => TRUE,
 +
      'hidden' => FALSE,
 +
      'add_validation' => $file_add_validation,
 +
      'edt_validation' => $file_edt_validation
 
);
 
);
 
</pre>
 
</pre>
Line 91: Line 178:
 
<pre>$conf_field_issuedto =  
 
<pre>$conf_field_issuedto =  
 
     array(
 
     array(
 +
        'field_id' => 'conf_field_issuedto',
 
         'dataclass' => 'action',
 
         'dataclass' => 'action',
 
         'classtype' => 'issuedto',
 
         'classtype' => 'issuedto',
         'alias_tbl' => 'cor_lut_actiontype',
+
         'aliasinfo' => FALSE,
        'alias_col' => 'actiontype',
 
        'alias_src_key' => 'issuedto',
 
 
         'actors_mod' => 'abk',
 
         'actors_mod' => 'abk',
 
         'actors_type' => 'people',
 
         'actors_type' => 'people',
Line 102: Line 188:
 
         'actors_elementclass' => 'txt',
 
         'actors_elementclass' => 'txt',
 
         'actors_grp' => FALSE,
 
         'actors_grp' => FALSE,
        'alias_type' => '1',
 
 
         'editable' => TRUE,
 
         'editable' => TRUE,
 
         'hidden' => FALSE,
 
         'hidden' => FALSE,

Latest revision as of 12:29, 10 December 2012

This is the documentation for the field settings file. It contains a technical description of the elements that must be and may optionally be present in fields.

Common/Obligatory Attributes

Basics

The two top settings are essential for the good working of the field:

  • dataclass = This tells the system what Data Class the field is.
  • classtype = This tells the system what Classtype the field is.

There is not currently an ARK function to create new classtypes. In order to add a new classtype, please access the database using PHPMyAdmin and add the classtype directly in the cor_lut_classtype table (eg. cor_lut_actiontype, cor_lut_datetype, etc...).

Sorting

As of v0.8 fields now have the option of being made 'sortable' in the data view (search). In order to allow for ascending and descending sorting on fields a 'field_id' must be added to the fields of interest, rendering them sortable in the search results table view.

  • field_id = This is set to the name of the field, i.e. for field 'conf_field_textdesc', the 'field_id' => 'conf_field_textdesc'

Alias Settings

The alias for the field requires the following 4 attributes:

  • alias_tbl = the table for the getAlias call
  • alias_col = the col for the getAlias call
  • alias_src_key = the alias_src_key for the getAlias call
  • alias_type = the alias_type for the getAlias call

It is important to add all alias values to cor_tbl_alias when configuring fields. This can be completed using the Alias Administration tools.

Other Obligatory Settings

  • editable = set TRUE to process this field in forms set FALSE for display only
  • hidden = 1/TRUE | 0/FALSE/blank | string (see below)
  • add_validation = validation rules for this field when on an add routine
  • edt_validation = validation rules for this field when on an edt routine
editable

This is to with how the system processes As of v1.1 this variable only affects the way update_db processes fields - not the user interface.

  • 1/TRUE - handles field as normal
  • 0/FALSE - update_db will ignore this field (e.g. options field)
hidden

This variable is processed by frmElem() and is a setting which allows admins to a hide a given field from user input. If hidden a default needs to be supplied so that the input is supplied with a variable. The only dataclasses that has implemented this option as of v1.1 are xmi and itemkey. Variable will be ignored on all other dataclasses, but still obligatory as this will implemented in the future.

  • 1/TRUE - field is hidden, input type = hidden (needs default supplied, as mentioned above)
  • 0/FALSE - user input form displayed as normal
  • string - nname which adds the markup for label displayed in form, functions the same as TRUE

Optional Settings

  • field_op_default = 0/FALSE/blank/unset | string

Processed by frmElem() but only implemented on itemkeys as of v1.1

  • 0/FALSE/blank/unset - input displayed as normal
  • string - string displayed as default within field, e.g. next

Examples

An example of a standard text field:

$conf_field_desc =
    array(
        'field_id' => 'conf_field_desc',
        'dataclass' => 'txt',
        'classtype' => 'desc',
        'aliasinfo' => FALSE,
        'editable' => TRUE,
        'hidden' => FALSE,
        'add_validation' => $txt_add_validation,
        'edt_validation' => $txt_edt_validation
);

An example of a standard attribute field:

$conf_field_samplecondition =
    array(
        'field_id' => 'conf_field_samplecondition',
        'dataclass' => 'attr',
        'classtype' => 'samplecondition',
        'aliasinfo' => FALSE,
        'editable' => TRUE,
        'hidden' => FALSE,
        'add_validation' => $attr_add_validation,
        'edt_validation' => $attr_edt_validation
);

An example of a standard number field:

$conf_field_total =
    array(
        'field_id' => 'conf_field_total',
        'dataclass' => 'number',
        'classtype' => 'total',
        'aliasinfo' => FALSE,
        'editable' => TRUE,
        'hidden' => FALSE,
        'add_validation' => $number_add_validation,
        'edt_validation' => $number_edt_validation
);

An example of a standard date field:

$conf_field_issuedon =
    array(
        'field_id' => 'conf_field_issuedon',
        'dataclass' => 'date',
        'datestyle' => 'dd,mm,yr',
        'classtype' => 'issuedon',
        'aliasinfo' => FALSE,
        'editable' => TRUE,
        'hidden' => FALSE,
        'add_validation' => $date_add_validation,
        'edt_validation' => $date_edt_validation
);

An example of a standard span field:

$conf_field_sameas =
   array(
       'field_id' => 'conf_field_sameas',
       'dataclass' => 'span',
       'classtype' => 'sameas',
       'aliasinfo' => FALSE,
       'editable' => TRUE,
       'hidden' => FALSE,
       'add_validation' => $span_add_validation,
       'edt_validation' => $span_edt_validation
);

An example of a standard xmi field:

$conf_field_plnxmicxt = 
    array(
        'field_id' => 'conf_field_plnxmicxt',
        'dataclass' => 'xmi',
        'classtype' => 'xmi_list',
        'aliasinfo' =>
            array(
                'alias_tbl' => 'cor_tbl_module',
                'alias_col' => 'itemkey',
                'alias_src_key' => 'pln_cd',
                'alias_type' => '1',
        ),
        'module' => 'cxt',
        'xmi_mod' => 'pln',  
        'force_var_itemkey' => 'pln_cd',
        'editable' => TRUE,
        'hidden' => FALSE,
        'add_validation' => $xmi_add_validation,
        'edt_validation' => $xmi_edt_validation
);

And finally, an example of a standard file field:

$conf_field_file =
  array(
      'field_id' => 'conf_field_file',
      'dataclass' => 'file',
      'classtype' => 'file',
      'aliasinfo' => FALSE,
      'editable' => TRUE,
      'hidden' => FALSE,
      'add_validation' => $file_add_validation,
      'edt_validation' => $file_edt_validation
);

Class specific settings

Each class has some specific settings some of which may be optional or required.

Class: action

An example of an action class field.

$conf_field_issuedto = 
    array(
        'field_id' => 'conf_field_issuedto',
        'dataclass' => 'action',
        'classtype' => 'issuedto',
        'aliasinfo' => FALSE,
        'actors_mod' => 'abk',
        'actors_type' => 'people',
        'actors_element' => 'name',
        'actors_style' => 'single',
        'actors_elementclass' => 'txt',
        'actors_grp' => FALSE,
        'editable' => TRUE,
        'hidden' => FALSE,
        'add_validation' => $action_add_validation,
        'edt_validation' => $action_edt_validation
);
  • actors_mod = The module holding the actors (normally abk)
  • actors_type = The mod type as listed in mod_lut_modtype
  • actors_element = The text type to display within the dropdown
  • actors_style = whether actor information is displayed in a list style ('list') or as a single actor/date pairing ('single')
  • actors_elementclass = Class of data to be displayed for a given actor (ie. txt, number, etc)
  • actors_grp = Group functionality will allow the selection of a group of actors (in development)

Event Fields

Event fields are effectively wrappers for action/date fields. All fields must be set up above. One can also use actions and dates without having the event wrapper, but this allows one to group multiple events into a single subform.

See below for an example of a configured event field:

$conf_event_compiled = 
    array(
        'type' => 'compiled',
        'date' => $conf_field_compiledon,
        'action' => $conf_field_compiledby
);