System settings form()

来自站长百科
跳转至: 导航、​ 搜索

导航: 上一页 | 首页 | DedeCMS | 帝国CMS | Xoops | SupeSite | PHPCMS | PHP168 | Joomla


system_settings_form($form) --很重要的一个函数,在设置后台表单时候经常用到。主要用于为一个表单添加按钮和设置前缀.

参数

$form 一个包含表单结构的关联数组。

返回值

表单结构。

实例

<?php
function onthisdate_admin() {
  $form = array();
  $form['onthisdate_maxdisp'] = array(
    '#type' => 'textfield',
    '#title' => t('Maximum number of links'),
    '#default_value' => variable_get('onthisdate_maxdisp', 3),
    '#size' => 2,
    '#maxlength' => 2,
    '#description' => t("The maximum number of links to display in the block."),
    '#required' => TRUE,
  );

  return system_settings_form($form);
}
?>

详解:对于实际元素设置,我们只要定义表单元素即可。-----system_settings_form()函数将处理创建表单页面,添加提交按钮和保存设置。