file_theme()
Implements hook_theme().
function file_theme() { return array( // From file.module. 'file_link' => array( 'variables' => array('file' => NULL, 'description' => NULL, 'attributes' => array()), ), 'file_managed_file' => array( 'render element' => 'element', ), // From file.field.inc. 'file_widget_multiple' => array( 'render element' => 'element', 'file' => 'file.field.inc', ), 'file_upload_help' => array( 'variables' => array('description' => NULL, 'upload_validators' => NULL, 'cardinality' => NULL), 'file' => 'file.field.inc', ), ); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!file!file.module/function/file_theme/8.1.x