updated core to 7.58 (right after the site was hacked)

This commit is contained in:
2018-04-20 23:48:40 +02:00
parent 18f4aba146
commit 9344a61b61
711 changed files with 99690 additions and 480 deletions

View File

@@ -0,0 +1,29 @@
<?php
/**
* @file
* Template file for the theming example text form.
*
* Available custom variables:
* - $text_form: A string containing the pre-rendered form.
* - $text_form_content: An array of form elements keyed by the element name.
*
* The default example below renders the entire form and its form elements in
* a default order provided by Drupal.
*
* Alternatively, you may print each form element in the order you desire,
* adding any extra html markup you wish to decorate the form like this:
*
* <?php print $text_form_content['element_name']; ?>
*
* The following snippet will print the contents of the $text_form_content
* array, hidden in the source of the page, for you to discover the individual
* element names.
*
* <?php print '<!--' . print_r($text_form_content, TRUE) . '-->'; ?>
*/
?>
<!-- theming-example-text-form template -->
<div class="container-inline">
<?php print $text_form; ?>
</div>
<!-- /theming-example-text-form template -->