コード例 #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;
}
コード例 #2
0
ファイル: template.php プロジェクト: ndrsklng/sajten
/**
 * 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;
}
コード例 #3
0
ファイル: template.php プロジェクト: justinlundy/SenateDrupal
/**
 * 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;
}
コード例 #4
0
/**
 * Implementation of HOOK_theme().
 */
function STARTERKIT_theme(&$existing, $type, $theme, $path)
{
    return zen_theme($existing, $type, $theme, $path);
}
コード例 #5
0
ファイル: template.php プロジェクト: javaperl/fcase
/**
 * Implementation of HOOK_theme().
 */
function cti_flex_theme(&$existing, $type, $theme, $path)
{
    $hooks = zen_theme($existing, $type, $theme, $path);
    return $hooks;
}
コード例 #6
0
/**
 * Implementation of HOOK_theme().
 */
function tma_theme(&$existing, $type, $theme, $path)
{
    return zen_theme($existing, $type, $theme, $path);
}
コード例 #7
0
/**
 * 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;
}
コード例 #8
0
ファイル: template.php プロジェクト: kimpepper/drupal-base
/**
 * Implementation of HOOK_theme().
 */
function zen_classic_theme(&$existing, $type, $theme, $path)
{
    return zen_theme($existing, $type, $theme, $path);
}
コード例 #9
0
ファイル: template.php プロジェクト: tioui/EiffelStudio
/**
 * Implementation of HOOK_theme().
 */
function eiffeldoc_theme(&$existing, $type, $theme, $path)
{
    return zen_theme($existing, $type, $theme, $path);
}