wp/wp-includes/SimplePie/Author.php
changeset 16 a86126ab1dd4
parent 0 d970ebf37754
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
     3  * SimplePie
     3  * SimplePie
     4  *
     4  *
     5  * A PHP-Based RSS and Atom Feed Framework.
     5  * A PHP-Based RSS and Atom Feed Framework.
     6  * Takes the hard work out of managing a complete RSS/Atom solution.
     6  * Takes the hard work out of managing a complete RSS/Atom solution.
     7  *
     7  *
     8  * Copyright (c) 2004-2012, Ryan Parman, Geoffrey Sneddon, Ryan McCue, and contributors
     8  * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors
     9  * All rights reserved.
     9  * All rights reserved.
    10  *
    10  *
    11  * Redistribution and use in source and binary forms, with or without modification, are
    11  * Redistribution and use in source and binary forms, with or without modification, are
    12  * permitted provided that the following conditions are met:
    12  * permitted provided that the following conditions are met:
    13  *
    13  *
    31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
    31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
    32  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    32  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    33  * POSSIBILITY OF SUCH DAMAGE.
    33  * POSSIBILITY OF SUCH DAMAGE.
    34  *
    34  *
    35  * @package SimplePie
    35  * @package SimplePie
    36  * @version 1.3.1
    36  * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue
    37  * @copyright 2004-2012 Ryan Parman, Geoffrey Sneddon, Ryan McCue
       
    38  * @author Ryan Parman
    37  * @author Ryan Parman
    39  * @author Geoffrey Sneddon
    38  * @author Sam Sneddon
    40  * @author Ryan McCue
    39  * @author Ryan McCue
    41  * @link http://simplepie.org/ SimplePie
    40  * @link http://simplepie.org/ SimplePie
    42  * @license http://www.opensource.org/licenses/bsd-license.php BSD License
    41  * @license http://www.opensource.org/licenses/bsd-license.php BSD License
    43  */
    42  */
    44 
    43 
   112 	{
   111 	{
   113 		if ($this->name !== null)
   112 		if ($this->name !== null)
   114 		{
   113 		{
   115 			return $this->name;
   114 			return $this->name;
   116 		}
   115 		}
   117 		else
   116 
   118 		{
   117 		return null;
   119 			return null;
       
   120 		}
       
   121 	}
   118 	}
   122 
   119 
   123 	/**
   120 	/**
   124 	 * Author's link
   121 	 * Author's link
   125 	 *
   122 	 *
   129 	{
   126 	{
   130 		if ($this->link !== null)
   127 		if ($this->link !== null)
   131 		{
   128 		{
   132 			return $this->link;
   129 			return $this->link;
   133 		}
   130 		}
   134 		else
   131 
   135 		{
   132 		return null;
   136 			return null;
       
   137 		}
       
   138 	}
   133 	}
   139 
   134 
   140 	/**
   135 	/**
   141 	 * Author's email address
   136 	 * Author's email address
   142 	 *
   137 	 *
   146 	{
   141 	{
   147 		if ($this->email !== null)
   142 		if ($this->email !== null)
   148 		{
   143 		{
   149 			return $this->email;
   144 			return $this->email;
   150 		}
   145 		}
   151 		else
   146 
   152 		{
   147 		return null;
   153 			return null;
       
   154 		}
       
   155 	}
   148 	}
   156 }
   149 }
   157