Advanced theme settings | drupal.org - 4 views
-
here. dman - April 6, 2009 - 22:10 This worked fo me. An additional logo (Appeared in the footer everywhere) Not sure why I had to put the submit handler into the #validate pass :-/ It was copied from the existing theme settings funcs. 'campaign_' is the theme name.
How To Create Users Programmatically In Drupal 6.x - 1 views
-
<?php $newUser = array( 'name' => 'username', 'pass' => 'password', // note: do not md5 the password 'mail' => 'email address', 'status' => 1, 'init' => 'email address' ); user_save(null, $newUser); ?>
Drupal 6 translation cheat sheet - 0 views
120 Free Essential Drupal 6.x Themes | tripwire magazine - 0 views
Free Drupal e-book guides - Drupal 6 and theme setup basics, creating content, using bl... - 0 views
forms_api_reference.html | Drupal API - 0 views
Hooks | Drupal API - 0 views
Theming the User Registration Form in Drupal 6 | Trellon - 0 views
-
<?phpfunction themename_theme($existing, $type, $theme, $path) { return array( ... // tell Drupal what template to use for the user register form 'user_register' => array( 'arguments' => array('form' => NULL), 'template' => 'user-register', // this is the name of the template ), ... );}?>
-
<div id="registration_form"> <div class="field"> <?php print drupal_render($form['account']['name']); // prints the username field ?> </div> <div class="field"> <?php print drupal_render($form['account']['pass']); // print the password field ?> </div> <div class="field"> <?php print drupal_render($form['submit']); // print the submit button ?> </div> </div></div>
-
<?php print '<pre>'; print var_export($form); print '</pre>';?>
- ...3 more annotations...
devel.module | Drupal API - 0 views
The Great Pretender: Making your data act like a field | Lullabot - 7 views
-
Now, though, it's possible for any module to tie into CCK's field management page to control the positioning of custom content. The key is hook_content_extra_fields(), and in this article we'll show you how to use it.
-
Now, though, it's possible for any module to tie into CCK's field management page to control the positioning of custom content. The key is hook_content_extra_fields(), and in this article we'll show you how to use it.
‹ Previous
21 - 39 of 39
Showing 20▼ items per page