Ignore:
Timestamp:
Jun 20, 2013, 12:51:22 PM (11 years ago)
Author:
mistic100
Message:

corrections and example of {html_style}, {html_options}, API info

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/skeleton/trunk/admin/config.php

    r17899 r23395  
    1212    'option1' => intval($_POST['option1']),
    1313    'option2' => isset($_POST['option2']),
     14    'option3' => $_POST['option3'],
    1415    );
    1516     
     
    1819}
    1920
     21$select_options = array(
     22  'one' => l10n('One'),
     23  'two' => l10n('Two'),
     24  'three' => l10n('Three'),
     25  );
     26 
    2027// send config to template
    2128$template->assign(array(
    2229  'skeleton' => $conf['skeleton'],
     30  'select_options' => $select_options
    2331  ));
    2432
Note: See TracChangeset for help on using the changeset viewer.