You are here

function facebook_wall_theme in Facebook Wall 7

Implements hook_theme().

File

./facebook_wall.module, line 212
Get the current facebook wall posts of the given user or page.

Code

function facebook_wall_theme() {
  return array(
    'facebook_wall' => array(
      'variables' => array(
        'node' => NULL,
      ),
      'template' => 'facebook-wall',
    ),
  );
}