You are here

function juicerio_theme in Juicer - Social Media Feed Aggregator 8

Same name and namespace in other branches
  1. 7 juicerio.module \juicerio_theme()

Implements hook_theme().

File

./juicerio.module, line 38
Module file for the Juicer Integration module.

Code

function juicerio_theme($existing, $type, $theme, $path) {
  return [
    'juicerio_feed' => [
      'template' => 'juicer-feed',
      'variables' => [
        'feed_id' => NULL,
        'post_num' => NULL,
        'infinite_pages' => NULL,
        'gutter_amt' => NULL,
        'column_num' => NULL,
        'filters' => NULL,
        'style' => NULL,
      ],
    ],
  ];
}