Роздрукуйте форми реєстрації та реєстрації на одній сторінці


11

Як надрукувати форми реєстру та реєстрації на одній сторінці?

Я думаю, що я справді шукаю лише ідентифікатори форми, але якщо у вас є зручна функція візуалізації, вона буде дуже вдячна.

Відповіді:


12
print(drupal_render(drupal_get_form('user_register_form')));
print(drupal_render(drupal_get_form('user_login_block')));

Докладніше див. User_register_form () та user_login_block () . Зауважте, що user_register_formце незвичайна функція побудови форм: вона переспрямовує в деяких випадках.


Красивий товариш. Ідеальна відповідь!
emc

1
Будь-яка ідея, як отримати це в Drupal 8? Дякую.
Стефан

Філ, може бути , це якийсь - якої допомоги: api.drupal.org/api/drupal / ...
Alari Truuts

6

Я взяв код з LoginToboggan. Це те, що я отримав.

/**
* Implementation of hook_theme()
*/
function os_pages_theme() {
  return array(
    'os_pages_login_form' => array(
      'variables' => array(
        'register_form' => NULL,
        'login_form' => NULL,
      ),
    ),
  );
}
/**
* Logintobbogin provides the code to consolidate
* the registration page and the login page however
* it doesn't do exactly the way we want so we will 
* take the code. 
* @see http://drupal.org/project/logintoboggan
*/

 /**
 * Implementation of hook_menu_alter().
 */
function os_pages_menu_alter(&$callbacks) {
  // Kill the tabs on the login pages.
  $callbacks['user/login']['type'] = MENU_NORMAL_ITEM;
  $callbacks['user/login']['page callback'] = 'os_pages_login_page';
  $callbacks['user/register']['type'] = MENU_CALLBACK;
  $callbacks['user/register']['page callback'] = 'os_pages_login_page';
  $callbacks['user/register']['page arguments'] = array('register');
  $callbacks['user/password']['type'] = MENU_CALLBACK;
  $callbacks['user']['page callback'] = 'os_pages_login_page';
}
/**
 * Menu callback for user/login
 *   creates a unified login/registration form (without tabs)
 */
function os_pages_login_page() {
  global $user;
  if ($user->uid) {
    menu_set_active_item('user/' . $user->uid);
    return menu_execute_active_handler(NULL, FALSE);
  }
  else {
    // Title just clutters the interface...
    drupal_set_title('');
    $output = os_pages_login_form();
    return $output;
  }
}
/**
 * Builds a unified login form.
 */
function os_pages_login_form() {
  $register_form = drupal_get_form('user_register_form');
  $login_form = drupal_get_form('user_login');
  $rendered_register_form = drupal_render($register_form);
  $rendered_login_form = drupal_render($login_form);
  $variables = array(
    'login_form' => $rendered_login_form,
    'register_form' => $rendered_register_form,
  );
  $output = theme('os_pages_login_form', $variables);
  return $output;
}
/**
 * Theme function for unified login page.
 */
function theme_os_pages_login_form($variables) {

  $register_form = $variables['register_form'];
  $login_form = $variables['login_form'];
  $output = '';

  $output .= '<div class="login-form">';

  // Add the login and registration forms in.
  $output .= '<div id="register-form">' . $register_form . '</div>';
  $output .= '<div id="login-form">' . $login_form . '</div>';

  $output .= '</div>';

  return $output;
}

4

Для цього вам потрібно створити сторінку для реєстрації, як ця

page-user-register.tpl.php

І друкуйте вміст сторінки як завжди. на цій сторінці ви можете спробувати візуалізуватиuser_login_block

Додаткові ресурси

  1. http://www.trevorsimonton.com/blog/page-usertplphp-profile-php-template-drupal
  2. http://api.drupal.org/api/drupal/modules%21user%21user.module/function/user_login_block/7

1
Обрана відповідь drupal.stackexchange.com/a/27419/4471 призведе до помилки перевірки.
niksmac

4

LoginToboggan зроби це для вас: встановіть його та перейдіть до адміністратора / config / system / logintoboggan; виберіть "Представити єдину сторінку входу / реєстрації."


також якщо ви хочете написати власний модуль, ви можете подивитися його джерело
Мохаммед Алі Акбарі
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.