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

Source for file request_accept.php

Documentation is available at request_accept.php

  1. <?php
  2. /**
  3.  * File containing the ezcMvcRequestAccept 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.  * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
  23.  * @version //autogentag//
  24.  * @filesource
  25.  * @package MvcTools
  26.  */
  27.  
  28. /**
  29.  * Struct which defines client-acceptable contents.
  30.  *
  31.  * @package MvcTools
  32.  * @version //autogentag//
  33.  */
  34. {
  35.     /**
  36.      * Request content types.
  37.      *
  38.      * @var array 
  39.      */
  40.     public $types;
  41.  
  42.     /**
  43.      * Acceptable charsets.
  44.      *
  45.      * @var array 
  46.      */
  47.     public $charsets;
  48.  
  49.     /**
  50.      * Request languages.
  51.      *
  52.      * @var array 
  53.      */
  54.     public $languages;
  55.  
  56.     /**
  57.      * Acceptable encodings.
  58.      *
  59.      * @var array 
  60.      */
  61.     public $encodings;
  62.  
  63.     /**
  64.      * Constructs a new ezcMvcRequestAccept.
  65.      *
  66.      * @param array $types 
  67.      * @param array $charsets 
  68.      * @param array $languages 
  69.      * @param array $encodings 
  70.      */
  71.     public function __construct$types array(),
  72.         $charsets array()$languages array()$encodings array() )
  73.     {
  74.         $this->types = $types;
  75.         $this->charsets = $charsets;
  76.         $this->languages = $languages;
  77.         $this->encodings = $encodings;
  78.     }
  79.  
  80.     /**
  81.      * Returns a new instance of this class with the data specified by $array.
  82.      *
  83.      * $array contains all the data members of this class in the form:
  84.      * array('member_name'=>value).
  85.      *
  86.      * __set_state makes this class exportable with var_export.
  87.      * var_export() generates code, that calls this method when it
  88.      * is parsed with PHP.
  89.      *
  90.      * @param array(string=>mixed) $array 
  91.      * @return ezcMvcRequestAccept 
  92.      */
  93.     static public function __set_statearray $array )
  94.     {
  95.         return new ezcMvcRequestAccept$array['types']$array['charsets'],
  96.             $array['languages']$array['encodings');
  97.     }
  98. }
  99. ?>
Documentation generated by phpDocumentor 1.4.3