Advertisement
Guest User

author.module

a guest
Feb 22nd, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Theme hook
  5.  */
  6. function author_block_theme($existing, $type, $theme, $path) {
  7.   return array(
  8.       'author_block' => array(
  9.           'variables' => array(
  10.               'title' => 'Default title',
  11.               'description' => null
  12.           )
  13.       )
  14.   );
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement