<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) PHP Fusion Inc
| https://phpfusion.com/
+--------------------------------------------------------+
| Filename: server.php
| Author: Core Development Team
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
namespace PHPFusion\News;
class NewsServer {
protected static $news_settings = [];
private static $news_instance = NULL;
private static $news_admin_instance = NULL;
public static function news() {
if (self::$news_instance === NULL) {
self::$news_instance = new NewsView();
}
return self::$news_instance;
}
public static function newsAdmin() {
if (self::$news_admin_instance === NULL) {
self::$news_admin_instance = new NewsAdminView();
}
return self::$news_admin_instance;
}
public static function getNewsSettings($key = NULL) {
if (empty(self::$news_settings)) {
self::$news_settings = get_settings("news");
}
return $key === NULL ? self::$news_settings : (isset(self::$news_settings[$key]) ? self::$news_settings[$key] : NULL);
}
/**
* @deprecated use getNewsSettings()
*/
public static function get_news_settings($key = NULL) {
return self::getNewsSettings($key);
}
}