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
class ReadMoreData {
private $id;
public function __call($name, $args) {
$methodPrefix = substr($name, 0, 3);
$methodProperty = lcfirst(substr($name,3));
if ($methodPrefix=='get') {
return $this->$methodProperty;
}
else if ($methodPrefix=='set') {
$this->$methodProperty = $args[0];
}
}
public function getSavedOptions() {
$data = array();
$id = $this->getId();
if(!isset($id)) {
return $data;
}
global $wpdb;
$getSavedSql = $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."expm_maker WHERE id = %d", $id);
$result = $wpdb->get_row($getSavedSql, ARRAY_A);
if(empty($result)) {
return $data;
}
$data['type'] = $result['type'];
$data['expm-title'] = $result['expm-title'];
$data['button-width'] = $result['button-width'];
$data['button-height'] = $result['button-height'];
$data['animation-duration'] = $result['animation-duration'];
$options = json_decode($result['options'], true);
return $data+$options;
}
public static function params() {
$horizontalAlign = array(
"left"=>"Left",
"center"=>"Center",
"right"=>"Right"
);
$vertical = array(
"top"=>"Top",
"bottom"=>"Bottom"
);
$googleFonts = array(
'Diplomata SC' => 'Diplomata SC',
'flavors'=>'Flavors',
'open-sans'=> 'Open Sans',
'droid-sans'=>'Droid Sans',
'droid-serif'=>'Droid Serif',
'chewy'=>'Chewy',
'oswald' => 'Oswald',
'Dancing Script'=> 'Dancing Script'
);
$arrays = array(
"horizontalAlign"=>$horizontalAlign,
"vertical"=>$vertical,
'googleFonts'=>$googleFonts
);
return $arrays;
}
public function defaultData() {
$dataDefault = array(
'button-width' => '100px',
'button-height' => '32px',
'animation-duration' => '1000',
'font-size' => '14px',
'btn-background-color' => '#81d742',
'btn-text-color' => '#ffffff',
'btn-border-radius' => '20px',
'horizontal' => 'center',
'vertical' => 'bottom',
'show-only-mobile' => '',
'type' => 'button',
'expander-font-family' => 'Diplomata SC',
'hover-effect' => '',
'btn-hover-text-color' => 'btn-hover-text-color',
'btn-hover-bg-color' => 'btn-hover-bg-color',
);
/*popup default values*/
$dataDefault['yrm-popup-theme'] = 'colorbox1';
$dataDefault['yrm-popup-width'] = '';
$dataDefault['yrm-popup-height'] = '';
$dataDefault['yrm-popup-max-width'] = '';
$dataDefault['yrm-popup-max-height'] = '';
$dataDefault['yrm-popup-initial-width'] = '300';
$dataDefault['yrm-popup-initial-height'] = '100';
$dataDefault['yrm-popup-esc-key'] = true;
$dataDefault['yrm-popup-close-button'] = true;
$dataDefault['yrm-popup-overlay-click'] = true;
return $dataDefault;
}
public static function getAllData() {
global $wpdb;
$results = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."expm_maker ORDER BY ID DESC", ARRAY_A);
return $results;
}
public static function getDataArrayFormDb() {
$dbData = self::getAllData();
$data['id'] = $dbData['id'];
$data['type'] = $dbData['type'];
$data['title'] = $dbData['title'];
$data['width'] = $dbData['width'];
$data['height'] = $dbData['height'];
$data['duration'] = $dbData['duration'];
return array_merge($data, $dbData);
}
public function getOptionsData() {
$id = $this->getId();
if(isset($id)) {
return $this->getSavedOptions();
}
else {
return $this->defaultData();
}
}
public function getOptionValue($optionKey, $isBool = false) {
$savedOptions = $this->getSavedOptions();
$defaultOptions = $this->defaultData();
if (isset($savedOptions[$optionKey])) {
$elementValue = $savedOptions[$optionKey];
}
else if(!empty($savedOptions) && $isBool) {
/*for checkbox elements when they does not exist in the saved data*/
$elementValue = $defaultOptions[$optionKey];
}
else if(isset($defaultOptions[$optionKey])){
$elementValue = $defaultOptions[$optionKey];
}
else {
$elementValue = '';
}
if($isBool) {
$elementValue = $this->boolToChecked($elementValue);
}
return $elementValue;
}
public function boolToChecked($var) {
return ($var?'checked':'');
}
public function delete() {
global $wpdb;
$id = $this->getId();
$wpdb->delete($wpdb->prefix.'expm_maker', array('id'=>$id), array('%d'));
}
}