151 lines
3.2 KiB
PHP
151 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2014 Openstack Foundation
|
|
* Licensed 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 under the License.
|
|
**/
|
|
/**
|
|
* Class NewsMainInfo
|
|
*/
|
|
final class NewsMainInfo {
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $headline;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $summary;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $city;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $state;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $country;
|
|
/**
|
|
* @var DateTime
|
|
*/
|
|
private $date;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $body;
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $link;
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $image;
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $document;
|
|
/**
|
|
* @var DateTime
|
|
*/
|
|
private $date_embargo;
|
|
/**
|
|
* @var Integer
|
|
*/
|
|
private $slider;
|
|
/**
|
|
* @var Integer
|
|
*/
|
|
private $featured;
|
|
/**
|
|
* @var DateTime
|
|
*/
|
|
private $date_expire;
|
|
|
|
/**
|
|
* @param string $headline
|
|
* @param string $summary
|
|
* @param string $city
|
|
* @param string $state
|
|
* @param string $country
|
|
* @param DateTime $date
|
|
* @param string $body
|
|
* @param string $link
|
|
* @param array $image
|
|
* @param array $document
|
|
* @param DateTime $date_embargo
|
|
* @param DateTime $date_expire
|
|
*/
|
|
public function __construct($headline,$summary,$city,$state,$country,$date,$body,$link, array $image, array $document,$date_embargo,$date_expire){
|
|
$this->headline = $headline;
|
|
$this->summary = $summary;
|
|
$this->city = $city;
|
|
$this->state = $state;
|
|
$this->country = $country;
|
|
$this->date = $date;
|
|
$this->body = $body;
|
|
$this->link = $link;
|
|
$this->image = $image;
|
|
$this->document = $document;
|
|
$this->date_embargo = $date_embargo;
|
|
$this->date_expire = $date_expire;
|
|
}
|
|
|
|
public function getHeadline(){
|
|
return $this->headline;
|
|
}
|
|
|
|
public function getDate(){
|
|
return $this->date;
|
|
}
|
|
|
|
public function getSummary(){
|
|
return $this->summary;
|
|
}
|
|
|
|
public function getCity(){
|
|
return $this->city;
|
|
}
|
|
|
|
public function getState(){
|
|
return $this->state;
|
|
}
|
|
|
|
public function getCountry(){
|
|
return $this->country;
|
|
}
|
|
|
|
public function getBody(){
|
|
return $this->body;
|
|
}
|
|
|
|
public function getLink(){
|
|
return $this->link;
|
|
}
|
|
|
|
public function getImage(){
|
|
return $this->image;
|
|
}
|
|
|
|
public function getDocument(){
|
|
return $this->document;
|
|
}
|
|
|
|
public function getDateEmbargo(){
|
|
return $this->date_embargo;
|
|
}
|
|
|
|
public function getDateExpire(){
|
|
return $this->date_expire;
|
|
}
|
|
}
|