12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- require_once "includes/tripal_ds.inc";
- require_once "includes/tripal_ds.ds.inc";
- function tripal_ds_init() {
- drupal_add_css(drupal_get_path('module', 'tripal_ds') . '/theme/css/tripaldsfeature.css');
- }
- function tripal_ds_ds_layout_info() {
- $path = drupal_get_path('module', 'tripal_ds');
- $layouts = array(
- 'tripal_ds_feature' => array(
- 'label' => t('Tripal Feature Layout'),
- 'path' => $path . '/theme/templates',
- 'regions' => array(
- 'top' => t('Top'),
- 'left' => t('Left'),
- 'right' => t('Right'),
- 'bottom' => t('Bottom'),
- ),
- 'css' => TRUE,
- ),
- );
- return $layouts;
- }
|