Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
wp-conte...
/
plugins
/
flow-flo...
/
libs
/
flowflow
/
core
/
src
/
settings
•
File:
LAGeneralSettings.php
•
Content:
<?php namespace la\core\settings; if ( ! defined( 'WPINC' ) ) die; /** * Flow-Flow. * * @package FlowFlow * @author Looks Awesome <email@looks-awesome.com> * @link http://looks-awesome.com * @copyright Looks Awesome */ class LAGeneralSettings { private static $instance = null; /** * @return LAGeneralSettings */ public static function get(){ return self::$instance; } private $options; private $auth_options; public function __construct($options, $auth_options) { $this->options = $options; $this->auth_options = $auth_options; self::$instance = $this; } public function isAgoStyleDate(){ return $this->dateStyle() == 'agoStyleDate'; } public function dateStyle() { $value = $this->options["general-settings-date-format"]; if (isset($value)) { return $value; } return 'agoStyleDate'; } public function original() { return $this->options; } public function originalAuth(){ return $this->auth_options; } public function useProxyServer(){ return LASettingsUtils::notYepNope2ClassicStyleSafe($this->options, "general-settings-disable-proxy-server", true); } public function useCurlFollowLocation(){ return LASettingsUtils::notYepNope2ClassicStyleSafe($this->options, "general-settings-disable-follow-location", true); } public function useIPv4(){ return LASettingsUtils::YepNope2ClassicStyleSafe($this->options, "general-settings-ipv4", true); } public function getCountOfPostsByFeed(){ if (isset($this->options["general-settings-feed-post-count"]) && ctype_digit(strval(($this->options["general-settings-feed-post-count"])))){ if (($count = (int)$this->options["general-settings-feed-post-count"]) > 0) { return $count; } } return FF_FEED_POSTS_COUNT; } public function isSEOMode(){ return LASettingsUtils::YepNope2ClassicStyleSafe($this->options, "general-settings-seo-mode", false); } public function canModerate() { foreach ( $this->roles() as $role ) { if (function_exists('current_user_can') && current_user_can($role)) return true; } return false; } public function roles(){ $roles = []; foreach ( $this->options as $key => $value ) { if (strpos($key, 'mod-role-') === 0 && $value == LASettingsUtils::YEP){ $roles[] = str_replace('mod-role-', '', $key); } } if (empty($roles)) return [ 'administrator' ]; return $roles; } public function enabledEmailNotification() { return LASettingsUtils::YepNope2ClassicStyleSafe($this->options, 'general-notifications', false); } }
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List