source: sipes/modules_contrib/ctools/includes/wizard.theme.inc @ 92213c1

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

se actualizo el modulo

  • Propiedad mode establecida a 100755
File size: 468 octetos
Línea 
1<?php
2
3/**
4 * @file
5 * Themable for the wizard tool.
6 */
7
8function ctools_wizard_theme(&$theme) {
9  $theme['ctools_wizard_trail'] = array(
10    'arguments' => array('trail'),
11    'file' => 'includes/wizard.theme.inc',
12  );
13}
14
15/**
16 * Themable display of the 'breadcrumb' trail to show the order of the
17 * forms.
18 */
19function theme_ctools_wizard_trail($trail) {
20  if (!empty($trail)) {
21    return '<div class="wizard-trail">' . implode(' » ', $trail) . '</div>';
22  }
23}
24
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.