Guest User

Cases Model

a guest
Sep 26th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.26 KB | None | 0 0
  1. <?php
  2. namespace Webguerillas\Wgbe\Domain\Model;
  3.  
  4. /***************************************************************
  5.  *  Copyright notice
  6.  *
  7.  *  (c) 2013
  8.  *  All rights reserved
  9.  *
  10.  *  This script is part of the TYPO3 project. The TYPO3 project is
  11.  *  free software; you can redistribute it and/or modify
  12.  *  it under the terms of the GNU General Public License as published by
  13.  *  the Free Software Foundation; either version 3 of the License, or
  14.  *  (at your option) any later version.
  15.  *
  16.  *  The GNU General Public License can be found at
  17.  *  http://www.gnu.org/copyleft/gpl.html.
  18.  *
  19.  *  This script is distributed in the hope that it will be useful,
  20.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  *  GNU General Public License for more details.
  23.  *
  24.  *  This copyright notice MUST APPEAR in all copies of the script!
  25.  ***************************************************************/
  26.  
  27. /**
  28.  *
  29.  *
  30.  * @package wgbe
  31.  * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
  32.  *
  33.  */
  34. class Cases extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity {
  35.  
  36.     /**
  37.      * headline
  38.      *
  39.      * @var \string
  40.      */
  41.     protected $headline;
  42.  
  43.     /**
  44.      * copytext
  45.      *
  46.      * @var \string
  47.      */
  48.     protected $copytext;
  49.  
  50.     /**
  51.      * link
  52.      *
  53.      * @var \string
  54.      */
  55.     protected $link;
  56.  
  57.     /**
  58.      * Returns the headline
  59.      *
  60.      * @return \string $headline
  61.      */
  62.     public function getHeadline() {
  63.         return $this->headline;
  64.     }
  65.  
  66.     /**
  67.      * Sets the headline
  68.      *
  69.      * @param \string $headline
  70.      * @return void
  71.      */
  72.     public function setHeadline($headline) {
  73.         $this->headline = $headline;
  74.     }
  75.  
  76.     /**
  77.      * Returns the copytext
  78.      *
  79.      * @return \string $copytext
  80.      */
  81.     public function getCopytext() {
  82.         return $this->copytext;
  83.     }
  84.  
  85.     /**
  86.      * Sets the copytext
  87.      *
  88.      * @param \string $copytext
  89.      * @return void
  90.      */
  91.     public function setCopytext($copytext) {
  92.         $this->copytext = $copytext;
  93.     }
  94.  
  95.     /**
  96.      * Returns the link
  97.      *
  98.      * @return \string $link
  99.      */
  100.     public function getLink() {
  101.         return $this->link;
  102.     }
  103.  
  104.     /**
  105.      * Sets the link
  106.      *
  107.      * @param \string $link
  108.      * @return void
  109.      */
  110.     public function setLink($link) {
  111.         $this->link = $link;
  112.     }
  113.  
  114. }
  115. ?>
Advertisement
Add Comment
Please, Sign In to add comment