Update @ 2012-12-30: Here is much simpler approach proposed by tombehets. Thanks =D
/** * Implements hook_menu_alter(). */ function mymodule_menu_alter(&$items) { //redirect user/register to register, our custom panel. $items['user/register']['page callback'] = 'drupal_goto'; $items['user/register']['page arguments'] = array('register'); }
-
Panels is a very useful module in Drupal which helps us to customized page view with specific layout. Unfortunately, it does not support the User Login, User Registration and Forgot Password pages.
Luckily, I found a simple workaround on Google. The idea is just creating a custom panel page as usual and add a custom panel pane with the desired form as follow.
<?php // Drupal Login Form print drupal_get_form('user_login'); // Drupal Registration Form print drupal_get_form('user_register'); // Drupal Forgot Password Form module_load_include('inc', 'user', 'user.pages'); print drupal_get_form('user_pass'); ?>
Then we could add the following tpl.php in the theme folder and redirect to out newly created custom pages.
- page-user-login.tpl.php
- page-user-register.tpl.php
- page-user-password.tpl.php
Inside the above tpl.php, redirect to the correct URL using druapl_goto().
<?php // Redirect to the custom login page drupal_goto('user-registration'); ?>
Done =)
Reference:
- Panel for /user/login,/user/password,/user/register,/user/123/edit
- Drupal: Combining the Login and Registration Forms
Filed under: CMS Tagged: Drupal, Drupal Development, Panels, Postaday2011
