| ↑ 3. Темизация модуля Webform в Drupal 7. | ||||
| Урок 3.1. Шаблон webform-form.tpl.php |
||||
| ← | Предыдущий урок 3. Темизация модуля Webform в Drupal 7. |
Следующий урок → 4. hook_preprocess_page
|
||
****** webform-form.tpl.php ***** ************** * ********* *********:
- webform-form.tpl.php - ********** ****** *** **** ****.
- webform-form-<nid>.tpl.php - ************** ****** *** ***** *****.
*** ****, *** ** ****** ********* * ****** webform-form.tpl.php ***** *********** **** ./sites/all/modules/webform/templates/webform-form.tpl.php * ********** ***** **** ./sites/all/themes/vera/webform-form.tpl.php.
******* **** ./sites/all/themes/vera/webform-form.tpl.php ** ****** ********* *** **** **** ****** Webform. *** ** ******* ********* *** ***** *********** ***** ******* *********** **** ./sites/all/modules/webform/templates/webform-form.tpl.php * ********** ***** **** ./sites/all/themes/vera/webform-form-<nid>.tpl.php, *** <nid> – ID ********* * ******** ********* *****.
******* ****** ********* * **** webform-form.tpl.php:
<div style="padding:20px;border:1px orange solid;"> <div style="background:lightgreen;">*** ******* *****</div> <?php if (isset($form['submission_info']) || isset($form['navigation'])) { print drupal_render($form['navigation']); print drupal_render($form['submission_info']); } print drupal_render($form['submitted']); print drupal_render_children($form); if (isset($form['submission_info']) || isset($form['navigation'])) { unset($form['navigation']['#printed']); print drupal_render($form['navigation']); }
?> </div>
* ********** ****** ******** ******* * ***** ********** *****.
* ***** webform-form-<nid>.tpl.php ( * *** *** **** webform-form-653.tpl.php) ********* ********* ***:
<div style="padding:20px;border:5px LightPink solid;">
<div style="background:lightblue;">*** **** ******* *****</div>
<?php
if (isset($form['submission_info']) || isset($form['navigation'])) {
print drupal_render($form['navigation']);
print drupal_render($form['submission_info']);
}
print drupal_render($form['submitted']);
print drupal_render_children($form);
if (isset($form['submission_info']) || isset($form['navigation'])) {
unset($form['navigation']['#printed']);
print drupal_render($form['navigation']);
}
?>
</div>
* ********** *** ***** ***** ************* 653 ********* ***** * ********* ********, * ***** *** 653 ********* ***** * ******* ********.
| ↑ 3. Темизация модуля Webform в Drupal 7. | ||||
| Урок 3.1. Шаблон webform-form.tpl.php |
||||
| ← | Предыдущий урок 3. Темизация модуля Webform в Drupal 7. |
Следующий урок → 4. hook_preprocess_page
|
||