You are here

function hijri_theme in Hijri 8

Same name and namespace in other branches
  1. 7 hijri.module \hijri_theme()

Implements hook_theme().

File

./_hijri.module, line 45

Code

function hijri_theme($existing, $type, $theme, $path) {
  $item = array();
  $item = array(
    'hijri_date' => array(
      'variables' => array(
        'data' => Null,
      ),
      'template' => 'hijri-date',
      'path' => drupal_get_path('module', 'hijri') . '/theme',
    ),
  );
  return $item;
}