Apache Zeta Components Manual :: File Source for skip_days.php
Source for file skip_days.php
Documentation is available at skip_days.php
* File containing the ezcFeedSkipDaysElement class.
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* @version //autogentag//
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* Class defining a skipDays element.
* @property array(string) $days
* Which days to skip when retrieving a feed, for example
* array('Saturday', 'Sunday').
* @version //autogentag//
* Sets the property $name to $value.
* @param string $name The property name
* @param mixed $value The property value
public function __set( $name, $value )
$value =
array( $value );
parent::__set( $name, $value );
* Returns the value of property $name.
* @param string $name The property name
public function __get( $name )
return parent::__get( $name );