php #module实现了hook_form_alter

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php #module实现了hook_form_alter相关的知识,希望对你有一定的参考价值。

<?php

/*
 * Implementatiion of hook_form_alter()
 */

 function custom_example_form_alter(&$form, &$form_state, $form_id) {
    // dsm($form_id);
    // target a single form
  /* print the variables if needed to allow for 
  individual field theming or breaking them up. */
    if($form_id == "article_node_form") {
        dsm($form);
        $form ['title']['#title'] = t('Ole, ole ole ole!');
        $form['title']['#required'] = FALSE;
    }
// adjust input fields on the user login form
// below changes are overwritten by changes done via template.php
    if($form_id == 'user_login' || $form_id == 'user_login_block') {
        $form['name']['#title'] = t('Blödsinn');
  }    
 }

以上是关于php #module实现了hook_form_alter的主要内容,如果未能解决你的问题,请参考以下文章

CentOS6.5源码搭建LAMP--基于module方式实现php(单台机器)

CentOS7中基于rpm包方式安装部署apm(php module模块) + xcache

nginx使用replace-filter-nginx-module实现内容替换

[PHP内核]PHP内核学习------sapi_module_struct结构体解析(以cli为例)

[PHP内核]PHP内核学习------sapi_module_struct结构体解析(以cli为例)

[PHP内核]PHP内核学习------sapi_module_struct结构体解析(以cli为例)