Ejemplo n.º 1
0
/**
 * Implementation of HOOK_theme().
 */
function vojo_generic_theme(&$existing, $type, $theme, $path)
{
    $hooks = zen_theme($existing, $type, $theme, $path);
    // Add your theme hooks like this:
    $hooks['blog_node_form'] = array('arguments' => array('form' => NULL), 'template' => 'templates/node-blog-edit');
    // @TODO: Needs detailed comments. Patches welcome!
    return $hooks;
}
Ejemplo n.º 2
0
/**
 * Implementation of HOOK_theme().
 */
function mumbo_theme(&$existing, $type, $theme, $path) {
  $hooks = zen_theme($existing, $type, $theme, $path);
  // Add your theme hooks like this:
  /*
  $hooks['hook_name_here'] = array( // Details go here );
  */
  // @TODO: Needs detailed comments. Patches welcome!
  return $hooks;
}
Ejemplo n.º 3
0
/**
 * Implementation of HOOK_theme().
 */
function nys_theme(&$existing, $type, $theme, $path)
{
    $hooks = zen_theme($existing, $type, $theme, $path);
    // Add your theme hooks like this:
    /*
    $hooks['hook_name_here'] = array( // Details go here );
    */
    // @TODO: Needs detailed comments. Patches welcome!
    $hooks['search_theme_form'] = array('arguments' => array('form' => NULL));
    return $hooks;
}
Ejemplo n.º 4
0
/**
 * Implementation of HOOK_theme().
 */
function STARTERKIT_theme(&$existing, $type, $theme, $path)
{
    return zen_theme($existing, $type, $theme, $path);
}
Ejemplo n.º 5
0
/**
 * Implementation of HOOK_theme().
 */
function cti_flex_theme(&$existing, $type, $theme, $path)
{
    $hooks = zen_theme($existing, $type, $theme, $path);
    return $hooks;
}
Ejemplo n.º 6
0
/**
 * Implementation of HOOK_theme().
 */
function tma_theme(&$existing, $type, $theme, $path)
{
    return zen_theme($existing, $type, $theme, $path);
}
/**
 * Implementation of HOOK_theme().
 */
function camp_theme(&$existing, $type, $theme, $path)
{
    $hooks = zen_theme($existing, $type, $theme, $path);
    // Add your theme hooks like this:
    /*
    $hooks['hook_name_here'] = array( // Details go here );
    */
    $hooks['news_node_form'] = array('arguments' => array('form' => NULL), 'template' => 'form-node-news');
    $hooks['session_node_form'] = array('arguments' => array('form' => NULL), 'template' => 'form-node-session');
    $hooks['sponsor_node_form'] = array('arguments' => array('form' => NULL), 'template' => 'form-node-sponsor');
    // @TODO: Needs detailed comments. Patches welcome!
    return $hooks;
}
Ejemplo n.º 8
0
/**
 * Implementation of HOOK_theme().
 */
function zen_classic_theme(&$existing, $type, $theme, $path)
{
    return zen_theme($existing, $type, $theme, $path);
}
Ejemplo n.º 9
0
/**
 * Implementation of HOOK_theme().
 */
function eiffeldoc_theme(&$existing, $type, $theme, $path)
{
    return zen_theme($existing, $type, $theme, $path);
}