source: sipes/modules_contrib/ctools/includes/content.theme.inc @ a8b1f3f

stableversion-3.0
Last change on this file since a8b1f3f was 2efe680, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se actualizo el modulo

  • Propiedad mode establecida a 100755
File size: 465 octetos
Línea 
1<?php
2
3/**
4 * @file
5 * Contains theme registry and theme implementations for the content types.
6 */
7
8/**
9 * Implementation of hook_theme to load all content plugins and pass thru if
10 * necessary.
11 */
12function ctools_content_theme(&$theme) {
13  ctools_include('content');
14
15  $plugins = ctools_get_content_types();
16  foreach ($plugins as $plugin) {
17    if ($function = ctools_plugin_get_function($plugin, 'hook theme')) {
18      $function($theme, $plugin);
19    }
20  }
21}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.