Issue #2219617 by visabhishek, galooph, joshtaylor, Cottser: Remove @ingroup themeable from preprocess function docblocks.
parent
0b9a2826e5
commit
627b7bb5a3
|
@ -1067,8 +1067,6 @@ function template_preprocess_fieldset(&$variables) {
|
|||
* - element: An associative array containing the properties of the element.
|
||||
* Properties used: #attributes, #children, #open,
|
||||
* #description, #id, #title, #value, #optional.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
function template_preprocess_details(&$variables) {
|
||||
$element = $variables['element'];
|
||||
|
@ -2291,8 +2289,6 @@ function form_process_autocomplete($element, &$form_state) {
|
|||
* @param array $variables
|
||||
* An associative array containing:
|
||||
* - element: An associative array containing the properties of the element.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
function template_preprocess_input(&$variables) {
|
||||
$element = $variables['element'];
|
||||
|
@ -2849,8 +2845,6 @@ function form_process_file($element) {
|
|||
* - element: An associative array containing the properties of the element.
|
||||
* Properties used: #title, #title_display, #description, #id, #required,
|
||||
* #children, #type, #name.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
function template_preprocess_form_element(&$variables) {
|
||||
$element = &$variables['element'];
|
||||
|
|
|
@ -93,8 +93,6 @@ function _system_is_incompatible(&$incompatible, $files, Extension $file) {
|
|||
* of the array represents an administrative menu item, and must at least
|
||||
* contain the keys 'title', 'link_path', and 'localized_options', which are
|
||||
* passed to l(). A 'description' key may also be provided.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
function template_preprocess_admin_block_content(&$variables) {
|
||||
if (!empty($variables['content'])) {
|
||||
|
@ -126,8 +124,6 @@ function template_preprocess_admin_block_content(&$variables) {
|
|||
* 'title', a 'description', a formatted 'content' and a 'position' which
|
||||
* will control which container it will be in. This is usually 'left' or
|
||||
* 'right'.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
function template_preprocess_admin_page(&$variables) {
|
||||
$variables['system_compact_link'] = array(
|
||||
|
@ -228,8 +224,6 @@ function theme_system_admin_index($variables) {
|
|||
* - REQUIREMENT_OK: The requirement is satisfied.
|
||||
* - REQUIREMENT_WARNING: The requirement failed with a warning.
|
||||
* - REQUIREMENT_ERROR: The requirement failed with an error.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
function template_preprocess_status_report(&$variables) {
|
||||
$severities = array(
|
||||
|
@ -426,8 +420,6 @@ function theme_system_modules_uninstall($variables) {
|
|||
* An associative array containing:
|
||||
* - theme_groups: An associative array containing groups of themes.
|
||||
* - theme_group_titles: An associative array containing titles of themes.
|
||||
*
|
||||
* @ingroup themeable
|
||||
*/
|
||||
function template_preprocess_system_themes_page(&$variables) {
|
||||
$groups = array();
|
||||
|
|
Loading…
Reference in New Issue