DrupalBin
Submit Code
About
Recent Posts
TwitterFeed for D4D review
text
rewrite
Module to overrule the save settings of the "new node" form
Code
apidoc
Empty DateTime Object
Fix for listcars_manufacturer.module
listcars_manufacturer.info
listcars_manufacturer.module
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
test
theme
user
views
more tags
Home
Fix for Using hook_form_alter to fill in cck fields automatically and then hiding them from users
View
Fix
November 6, 2007 - 11:46am —
BrianJubal
function sitehelper_form_alter($form_id, &$form) {
global $user;
switch ($form_id) {
// Only do this for the review type's form
case 'minfo_node_form':
// Get the parent node's id from the url (url created from a different node)
if(arg(1) == 'add') {
$pnid = $_GET['pnid'];
$newpnid = intval($pnid);
$pnode = node_load($newpnid);
// Set the parentnid field's value
$form['field_parentnid'][0]['value']['#value'] = $newpnid;
}
if($user->uid != '1') {
// Hide the field
$form['field_parentnid'][0]['value']['#access'] = FALSE;
}
break;
}
}
CCK
hook_form_alter
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
function sitehelper_form_alter($form_id, &$form) { global $user; switch ($form_id) { // Only do this for the review type's form case 'minfo_node_form': // Get the parent node's id from the url (url created from a different node) if(arg(1) == 'add') { $pnid = $_GET['pnid']; $newpnid = intval($pnid); $pnode = node_load($newpnid); // Set the parentnid field's value $form['field_parentnid'][0]['value']['#value'] = $newpnid; } if($user->uid != '1') { // Hide the field $form['field_parentnid'][0]['value']['#access'] = FALSE; } 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
.