Apache Zeta Components Manual :: File Source for link.php

Source for file link.php

Documentation is available at link.php

  1. <?php
  2. /**
  3.  * File containing the ezcFeedLinkElement class.
  4.  *
  5.  * Licensed to the Apache Software Foundation (ASF) under one
  6.  * or more contributor license agreements.  See the NOTICE file
  7.  * distributed with this work for additional information
  8.  * regarding copyright ownership.  The ASF licenses this file
  9.  * to you under the Apache License, Version 2.0 (the
  10.  * "License"); you may not use this file except in compliance
  11.  * with the License.  You may obtain a copy of the License at
  12.  * 
  13.  *   http://www.apache.org/licenses/LICENSE-2.0
  14.  * 
  15.  * Unless required by applicable law or agreed to in writing,
  16.  * software distributed under the License is distributed on an
  17.  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  18.  * KIND, either express or implied.  See the License for the
  19.  * specific language governing permissions and limitations
  20.  * under the License.
  21.  *
  22.  * @package Feed
  23.  * @version //autogentag//
  24.  * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
  25.  * @filesource
  26.  */
  27.  
  28. /**
  29.  * Class defining a link element.
  30.  *
  31.  * @property string $href 
  32.  *                   The URL value of the link element.
  33.  * @property string $rel 
  34.  *                   The URL relation (eg. 'alternate', 'enclosure', etc).
  35.  * @property string $type 
  36.  *                   The type of the resource pointed by href (eg. 'audio/x-mp3').
  37.  * @property string $hreflang 
  38.  *                   The language of the resource pointed by href.
  39.  * @property string $title 
  40.  *                   The title for the URL.
  41.  * @property int $length 
  42.  *                The length in bytes for the resource pointed by href.
  43.  *
  44.  * @package Feed
  45.  * @version //autogentag//
  46.  */
  47. {
  48.     /**
  49.      * The URL value.
  50.      *
  51.      * @var string 
  52.      */
  53.     public $href;
  54.  
  55.     /**
  56.      * The rel for the link.
  57.      *
  58.      * @var string 
  59.      */
  60.     public $rel;
  61.  
  62.     /**
  63.      * The type of the resource pointed by href.
  64.      *
  65.      * @var string 
  66.      */
  67.     public $type;
  68.  
  69.     /**
  70.      * The language for the resource pointed by href.
  71.      *
  72.      * @var string 
  73.      */
  74.     public $hreflang;
  75.  
  76.     /**
  77.      * The title for the link.
  78.      *
  79.      * @var string 
  80.      */
  81.     public $title;
  82.  
  83.     /**
  84.      * The length in bytes of the resource pointed by href.
  85.      *
  86.      * @var int 
  87.      */
  88.     public $length;
  89.  
  90.     /**
  91.      * Returns the href attribute.
  92.      *
  93.      * @return string 
  94.      */
  95.     public function __toString()
  96.     {
  97.         return $this->href . '';
  98.     }
  99. }
  100. ?>
Documentation generated by phpDocumentor 1.4.3