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

Source for file text_input.php

Documentation is available at text_input.php

  1. <?php
  2. /**
  3.  * File containing the ezcFeedTextInputElement 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 text input feed element.
  30.  *
  31.  * @property string $name 
  32.  *                   The name of the text input element.
  33.  * @property string $link 
  34.  *                   The URL that the text input points at.
  35.  * @property string $title 
  36.  *                   The title of the text input.
  37.  * @property string $description 
  38.  *                   The description of the text input.
  39.  * @property string $about 
  40.  *                   An identifier for the text input (usually the same value
  41.  *                   as the link property). Used only by RSS1.
  42.  *
  43.  * @package Feed
  44.  * @version //autogentag//
  45.  */
  46. {
  47.     /**
  48.      * The name of the text input element.
  49.      *
  50.      * @var string 
  51.      */
  52.     public $name;
  53.  
  54.     /**
  55.      * The link that the text input points at.
  56.      *
  57.      * @var string 
  58.      */
  59.     public $link;
  60.  
  61.     /**
  62.      * The title of the text input.
  63.      *
  64.      * @var string 
  65.      */
  66.     public $title;
  67.  
  68.     /**
  69.      * The description for the text input.
  70.      *
  71.      * @var string 
  72.      */
  73.     public $description;
  74.  
  75.     /**
  76.      * The identifier for the text input.
  77.      *
  78.      * @var string 
  79.      */
  80.     public $about;
  81. }
  82. ?>
Documentation generated by phpDocumentor 1.4.3