DrupalBin
Submit Code
About
Recent Posts
Code
Fix for Code
Code
Fix for filefield implementation in an admin page. "An HTTP error 0 occurred. /drupal/?q=filefield/ahah///"
Undefined index:
searching for two different taxonomy terms - get this into views (2 on D6)?
Converting D6 to D7
error on clone same as earlier error on migrate
Reordering ORDER BY elements in selectQuery query
Fix for Fix for prefix_sufix_admin.inc
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
Fix for Hook Form Alter Module
View
Fix
December 5, 2009 - 1:06pm — Anonymous
<?php
/**
* Display help and module information
* @param path which path of the site we're displaying help
* @param arg array that holds the current path as would be returned from arg() function
* @return help text for the path
*/
function
cc_help
(
$path
,
$arg
)
{
$output
=
''
;
//declare your output variable
switch
(
$path
)
{
case
"admin/help#cc"
:
$output
=
'<p>'
.
t
(
"Custon mods for conservation corps site"
)
.
'</p>'
;
break
;
}
return
$output
;
}
// function cc_help
function
modulename_form_alter
(
&
$form
,
$form_state
,
$form_id
)
{
// Normally a switch is used because you may want to alter more than
// one form and it is easy to add a new case for each form.
switch
(
$form_id
)
{
// This is our form ID.
case
'search_block_form'
:
return
dsm
(
$form
)
;
break
;
}
}
Forms
Submit Fix
Summary:
Tags:
Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Show summary in full view
<?php /** * Display help and module information * @param path which path of the site we're displaying help * @param arg array that holds the current path as would be returned from arg() function * @return help text for the path */ function cc_help($path, $arg) { $output = ''; //declare your output variable switch ($path) { case "admin/help#cc": $output = '<p>'. t("Custon mods for conservation corps site") .'</p>'; break; } return $output; } // function cc_help function modulename_form_alter(&$form, $form_state, $form_id) { // Normally a switch is used because you may want to alter more than // one form and it is easy to add a new case for each form. switch ($form_id) { // This is our form ID. case 'search_block_form': return dsm($form); break; } }
Syntax highlighting mode:
ActionScript
ColdFusion
Diff
Drupal 5
Drupal 6
HTML
INI
Javascript
MySQL
PHP
Python
robots.txt
SQL
Text
Select the syntax highlighting mode to use.
See Also:
Order
Title:
URL:
-1
0
1
Title:
URL:
-1
0
1
Any links you'd like to have associated with the post (Drupal.org issue, Wikipedia article, etc).
File attachments
Changes made to the attachments are not permanent until you save this post. The first "listed" file will be included in RSS feeds.
Attach new file:
The maximum upload size is
1 MB
. Only files with the following extensions may be uploaded:
jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp phps
.