Source for file person.php

Documentation is available at person.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Platform
  4.  * @subpackage  Feed
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE
  8.  */
  9.  
  10. defined('JPATH_PLATFORM'or die;
  11.  
  12. /**
  13.  * Feed Person class.
  14.  *
  15.  * @package     Joomla.Platform
  16.  * @subpackage  Feed
  17.  * @since       12.3
  18.  */
  19. {
  20.     /**
  21.      * The email address of the person.
  22.      *
  23.      * @var    string 
  24.      * @since  12.3
  25.      */
  26.     public $email;
  27.  
  28.     /**
  29.      * The full name of the person.
  30.      *
  31.      * @var    string 
  32.      * @since  12.3
  33.      */
  34.     public $name;
  35.  
  36.     /**
  37.      * The type of person.
  38.      *
  39.      * @var    string 
  40.      * @since  12.3
  41.      */
  42.     public $type;
  43.  
  44.     /**
  45.      * The URI for the person.
  46.      *
  47.      * @var    string 
  48.      * @since  12.3
  49.      */
  50.     public $uri;
  51.  
  52.     /**
  53.      * Constructor.
  54.      *
  55.      * @param   string  $name   The full name of the person.
  56.      * @param   string  $email  The email address of the person.
  57.      * @param   string  $uri    The URI for the person.
  58.      * @param   string  $type   The type of person.
  59.      *
  60.      * @since   12.3
  61.      */
  62.     public function __construct($name null$email null$uri null$type null)
  63.     {
  64.         $this->name = $name;
  65.         $this->email = $email;
  66.         $this->uri = $uri;
  67.         $this->type = $type;
  68.     }
  69. }

Documentation generated on Tue, 19 Nov 2013 15:10:30 +0100 by phpDocumentor 1.4.3