Difference between revisions of "Sf finds"

From ARK
Jump to: navigation, search
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
===Description===
 
This is a [[subforms|subform]] that originally was set up to add attributes to items. It also used to provide 'add to list' functionality. In addition, it also used to provide a set boolean mechanism so that users can actively state that attribute x was NOT true.
 
This is a [[subforms|subform]] that originally was set up to add attributes to items. It also used to provide 'add to list' functionality. In addition, it also used to provide a set boolean mechanism so that users can actively state that attribute x was NOT true.
  
Need to check with HRO if this form has been superceeded by the more generic sf_attr_bytype form. Looks like she is still using it for Portus despite what it says in the [[sf_assemblage]] documentation.
+
''This form is deprecated and has been superceded by [[sf_attr_bytype]]. Please do not configure any new subforms using sf_finds''
  
 +
===Additional Fields===
 +
This form does not require any additional fields.
 +
 +
===Example Configuration===
 +
<pre>
 +
$conf_mcd_botanictypes =
 +
    array(
 +
        'view_state' => 'max',
 +
        'edit_state' => 'view',
 +
        'sf_title' => 'botanictype', //appears in the titlebar of the subform (mk nname)
 +
        'sf_html_id' => 'smp_botanictypes', //the form id tag (must be unique)
 +
        'sf_nav_type' => 'full',
 +
        'script' => 'php/subforms/sf_finds.php',
 +
        'op_label' => 'space',
 +
        'op_input' => 'save',
 +
        'fields' => array(
 +
            $conf_field_botanictype
 +
        )
 +
);
 +
</pre>
  
 
[[category: Administrator]]
 
[[category: Administrator]]

Latest revision as of 23:33, 2 March 2011

Description

This is a subform that originally was set up to add attributes to items. It also used to provide 'add to list' functionality. In addition, it also used to provide a set boolean mechanism so that users can actively state that attribute x was NOT true.

This form is deprecated and has been superceded by sf_attr_bytype. Please do not configure any new subforms using sf_finds

Additional Fields

This form does not require any additional fields.

Example Configuration

$conf_mcd_botanictypes =
    array(
        'view_state' => 'max',
        'edit_state' => 'view',
        'sf_title' => 'botanictype', //appears in the titlebar of the subform (mk nname)
        'sf_html_id' => 'smp_botanictypes', //the form id tag (must be unique)
        'sf_nav_type' => 'full',
        'script' => 'php/subforms/sf_finds.php',
        'op_label' => 'space',
        'op_input' => 'save',
        'fields' => array(
            $conf_field_botanictype
        )
);