Difference between revisions of "Mod settings.php"

From ARK
Jump to: navigation, search
(Display Options)
(Display Options)
Line 10: Line 10:
 
']','type_6_L' => '*', 'type_6_R' => '*', 'type_4_L' => '', 'type_4_R' => '');
 
']','type_6_L' => '*', 'type_6_R' => '*', 'type_4_L' => '', 'type_4_R' => '');
 
</pre>
 
</pre>
In the above, 'type_#' refers to the type number in cxt_lut_cxttype.  The L or R refers to the whether the symbol will be displayed to the left or right of the context number.  The symbol itself appears after => between ' '.
+
In the above, 'type_#' refers to the type number in cxt_lut_cxttype.  The L or R refers to the whether the symbol will be displayed to the left or right of the context number.  The symbol itself appears after => between ' '.  Please note that in some cases (as in type 6 in the above example) a symbol can be placed only to one side of the item number.

Revision as of 07:02, 14 November 2008

These files contain settings for each installed module. Each module will require different settings depending on the data structure. For this documentation a standard single-context recording 'mod_cxt_settings.php' file will be discussed as an example.

Display Options

The display options influence how specific types of context record are displayed in navigation forms. Context data often requires brackets denoting the type of context. The code for configuring display looks like this:

$conf_br = array('type_2_L' => '(', 'type_2_R' => ')','type_1_L' => '[', 'type_1_R' => 
']','type_6_L' => '*', 'type_6_R' => '*', 'type_4_L' => '', 'type_4_R' => '');

In the above, 'type_#' refers to the type number in cxt_lut_cxttype. The L or R refers to the whether the symbol will be displayed to the left or right of the context number. The symbol itself appears after => between ' '. Please note that in some cases (as in type 6 in the above example) a symbol can be placed only to one side of the item number.