Advertisement
Guest User

Untitled

a guest
Sep 15th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1.  
  2.     /**
  3.      * The title of the article
  4.      *
  5.      * @ODM\String
  6.      * @var string
  7.      */
  8.     protected $headline;
  9.  
  10.     /**
  11.      * SubHeadline for the guide
  12.      *
  13.      * @ODM\String
  14.      * @var string
  15.      */
  16.     protected $subHeadline;
  17.  
  18.     /**
  19.      * The "blogroll"
  20.      *
  21.      * @ODM\Hash
  22.      * @var string
  23.      */
  24.     protected $teaser = array(
  25.         'title' => '',
  26.         'text' => ''
  27.     );
  28.  
  29.     /**
  30.      * Crosslink definition for the sidebar
  31.      *
  32.      * @ODM\Hash
  33.      * @var array
  34.      */
  35.     protected $crosslinkSidebar = array(
  36.         'title' => '',
  37.         'text' => ''
  38.     );
  39.  
  40.     /**
  41.      * Crosslink for the content area
  42.      *
  43.      * @ODM\Hash
  44.      * @var array
  45.      */
  46.     protected $crosslinkContent = array(
  47.         'title' => '',
  48.         'text' => ''
  49.     );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement