Difference between revisions of "Sf finds"
From ARK
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | This is a [[subform | + | ===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 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]] |
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 ) );