File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
// SendPress Required Class: SendPress_Option
// Prevent loading this file directly
if ( !defined('SENDPRESS_VERSION') ) {
header('HTTP/1.0 403 Forbidden');
die;
}
if(class_exists('SendPress_Option')){ return; }
/**
* SendPress_Options
*
* @uses
*
*
* @package SendPRess
* @author Josh Lyford
* @license See SENPRESS
* @since 0.8.7
*/
class SendPress_Option extends SendPress_Base {
private static $key = 'sendpress_options';
/**
* get
*
* @param mixed $name Item to get out of SendPress option array.
* @param mixed $default return value if option is not set.
*
* @access public
*
* @return mixed Value default or option value.
*/
static function get( $name, $default = false ) {
$options = get_option( self::$key );
if ( is_array( $options ) && isset( $options[$name] ) ) {
return is_array( $options[$name] ) ? $options[$name] : stripslashes( $options[$name] );
}
return $default;
}
static function get_encrypted( $name , $default = false ) {
$options = get_option( self::$key );
if ( is_array( $options ) && isset( $options[$name] ) ) {
if(isset($options[$name."_xd"])){
return $options[$name."_xd"];
} else {
$d = self::_decrypt( $options[$name] );
SendPress_Option::set_encrypted($name, $d);
}
return self::_decrypt( $options[$name] ) ;
}
return $default;
}
/**
* set
*
* @param mixed $option String or Array of options to set.
* @param mixed $value if String name is passed us this to pass value to save.
*
* @access public
*
* @return bool Value success or failure of option save.
*/
static function set($option, $value= null){
$options = get_option( self::$key );
//Set options with an array of values.
if(is_array($option)){
return update_option( self::$key, array_merge( $options, $option ) );
}
if ( !is_array( $options ) ) {
$options = array();
}
$options[$option] = $value;
return update_option( self::$key , $options );
}
/**
* email_set
*
* @param mixed $option String or Array of options to set.
* @param mixed $value if String name is passed us this to pass value to save.
*
* @access public
*
* @return bool Value success or failure of option save.
*/
static function email_set($option, $value= null){
$optkey = 'sendpress_email_settings';
$options = get_option( $optkey );
//Set options with an array of values.
if(is_array($option)){
return update_option( $optkey , array_merge( $options, $option ) );
}
if ( !is_array( $options ) ) {
$options = array();
}
$options[$option] = $value;
return update_option( $optkey , $options );
}
/**
* eamil_get
*
* @param mixed $name Item to get out of SendPress option array.
* @param mixed $default return value if option is not set.
*
* @access public
*
* @return mixed Value default or option value.
*/
static function email_get( $name, $default = false ) {
$optkey = 'sendpress_email_settings';
$options = get_option( $optkey );
if ( is_array( $options ) && isset( $options[$name] ) ) {
return is_array( $options[$name] ) ? $options[$name] : stripslashes( $options[$name] );
}
return $default;
}
/**
* eamil_get
*
* @param mixed $name Item to get out of SendPress option array.
* @param mixed $default return value if option is not set.
*
* @access public
*
* @return mixed Value default or option value.
*/
static function email_get_all( $name, $default = false ) {
$optkey = 'sendpress_email_settings';
return get_option( $optkey );
}
/**
* email_set
*
* @param mixed $option String or Array of options to set.
* @param mixed $value if String name is passed us this to pass value to save.
*
* @access public
*
* @return bool Value success or failure of option save.
*/
static function base_set($option, $value= null){
$optkey = 'sendpress_base_settings';
$options = get_option( $optkey );
//Set options with an array of values.
if(is_array($option)){
return update_option( $optkey , array_merge( $options, $option ) );
}
if ( !is_array( $options ) ) {
$options = array();
}
$options[$option] = $value;
return update_option( $optkey , $options );
}
/**
* eamil_get
*
* @param mixed $name Item to get out of SendPress option array.
* @param mixed $default return value if option is not set.
*
* @access public
*
* @return mixed Value default or option value.
*/
static function base_get( $name, $default = false ) {
$optkey = 'sendpress_base_settings';
$options = get_option( $optkey );
if ( is_array( $options ) && isset( $options[$name] ) ) {
return is_array( $options[$name] ) ? $options[$name] : stripslashes( $options[$name] );
}
return $default;
}
/**
* eamil_get
*
* @param mixed $name Item to get out of SendPress option array.
* @param mixed $default return value if option is not set.
*
* @access public
*
* @return mixed Value default or option value.
*/
static function base_get_all( $name, $default = false ) {
$optkey = 'sendpress_base_settings';
return get_option( $optkey );
}
static function set_encrypted($option, $value = null){
$options = get_option( self::$key );
$options[$option."_xd"] = $value;
return update_option(self::$key , $options);
}
static function set_sender($sender, $settings_array ){
$optkey = 'sendpress_sender_settings';
$options = get_option( $optkey );
$options[$sender."_temp"] = serialize( $settings_array);
//$options[$sender] = self::_encrypt( serialize( $settings_array) , SENDPRESS_SENDER_KEY);
return update_option( $optkey , $options);
}
static function get_sender( $sender ){
$optkey = 'sendpress_sender_settings';
$options = get_option( $optkey );
if(isset($options[$sender."_temp"])){
return unserialize($options[$sender."_temp"]);
} else {
$d = unserialize( self::_decrypt( $options[$sender] , SENDPRESS_SENDER_KEY));
SendPress_Option::set_sender($sender, $d);
}
return unserialize( self::_decrypt( $options[$sender] , SENDPRESS_SENDER_KEY));
}
static function check_for_keys(){
$options = get_option( self::$key );
foreach ($options as $key => $value) {
$pos = strrpos( $key , "current_send_" );
if ($pos !== false) {
unset( $options[ $key ] );
}
}
update_option( self::$key , $options );
}
/**
* is_double_optin
*
*
* @access public
*
* @return bool
*/
static function is_double_optin(){
if( SendPress_Option::get('send_optin_email') == 'yes'){
return true;
}
return false;
}
/**
* use_theme_style
*
*
* @access public
*
* @return bool
*/
static function use_theme_style(){
if( SendPress_Option::get('try-theme') == 'yes'){
return true;
}
return false;
}
}
