%PDF- %PDF-
Direktori : /home/komfo908/.trash/wp-content.1/plugins/supportcandy/includes/models/ |
Current File : /home/komfo908/.trash/wp-content.1/plugins/supportcandy/includes/models/class-wpsc-option.php |
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly! } if ( ! class_exists( 'WPSC_Option' ) ) : final class WPSC_Option { /** * Object data in key => val pair. * * @var array */ private $data = array(); /** * Set whether or not current object properties modified * * @var boolean */ private $is_modified = false; /** * Schema for this model * * @var array */ public static $schema = array(); /** * Prevent fields to modify * * @var array */ public static $prevent_modify = array(); /** * DB object caching * * @var array */ private static $cache = array(); /** * Cache for ticket list search items * * @var array */ private static $tl_search_items; /** * Initialize this class * * @return void */ public static function init() { // Apply schema for this model. add_action( 'init', array( __CLASS__, 'apply_schema' ), 2 ); // Get object of this class. add_filter( 'wpsc_load_ref_classes', array( __CLASS__, 'load_ref_class' ) ); } /** * Apply schema for this model * * @return void */ public static function apply_schema() { $schema = array( 'id' => array( 'has_ref' => false, 'ref_class' => '', 'has_multiple_val' => false, ), 'name' => array( 'has_ref' => false, 'ref_class' => '', 'has_multiple_val' => false, ), 'custom_field' => array( 'has_ref' => true, 'ref_class' => 'wpsc_cf', 'has_multiple_val' => false, ), 'date_created' => array( 'has_ref' => true, 'ref_class' => 'datetime', 'has_multiple_val' => false, ), 'load_order' => array( 'has_ref' => false, 'ref_class' => '', 'has_multiple_val' => false, ), ); self::$schema = apply_filters( 'wpsc_option_schema', $schema ); // Prevent modify. $prevent_modify = array( 'id', 'date_created' ); self::$prevent_modify = apply_filters( 'wpsc_option_prevent_modify', $prevent_modify ); } /** * Model constructor * * @param int $id - Optional. Data record id to retrive object for. */ public function __construct( $id = 0 ) { global $wpdb; $id = intval( $id ); if ( isset( self::$cache[ $id ] ) ) { $this->data = self::$cache[ $id ]->data; return; } if ( $id > 0 ) { $option = $wpdb->get_row( "SELECT * FROM {$wpdb->prefix}psmsc_options WHERE id = " . $id, ARRAY_A ); if ( ! is_array( $option ) ) { return; } foreach ( $option as $key => $val ) { if ( $key == 'name' ) { $name = WPSC_Translations::get( 'wpsc-option-' . $option['id'], stripslashes( $val ) ); if ( ! $name ) { WPSC_Translations::add( 'wpsc-option-' . $option['id'], $val ); WPSC_Translations::register_strings(); } $this->data[ $key ] = $val !== null ? WPSC_Translations::get( 'wpsc-option-' . $option['id'], stripslashes( $val ) ) : ''; } else { $this->data[ $key ] = $val !== null ? $val : ''; } } self::$cache[ $id ] = $this; } } /** * Convert object into an array * * @return array */ public function to_array() { return $this->data; } /** * Magic get function to use with object arrow function * * @param string $var_name - variable name. * @return mixed */ public function __get( $var_name ) { if ( ! isset( $this->data[ $var_name ] ) || $this->data[ $var_name ] == null || $this->data[ $var_name ] == '' ) { return self::$schema[ $var_name ]['has_multiple_val'] ? array() : ''; } if ( self::$schema[ $var_name ]['has_multiple_val'] ) { $response = array(); $values = $this->data[ $var_name ] ? explode( '|', $this->data[ $var_name ] ) : array(); foreach ( $values as $val ) { $response[] = self::$schema[ $var_name ]['has_ref'] ? WPSC_Functions::get_object( self::$schema[ $var_name ]['ref_class'], $val ) : $val; } return $response; } else { return self::$schema[ $var_name ]['has_ref'] && $this->data[ $var_name ] ? WPSC_Functions::get_object( self::$schema[ $var_name ]['ref_class'], $this->data[ $var_name ] ) : $this->data[ $var_name ]; } } /** * Magic function to use setting object field with arrow function * * @param string $var_name - (Required) property slug. * @param mixed $value - (Required) value to set for a property. * @return void */ public function __set( $var_name, $value ) { if ( ! isset( $this->data[ $var_name ] ) || in_array( $var_name, self::$prevent_modify ) ) { return; } $data_val = ''; if ( self::$schema[ $var_name ]['has_multiple_val'] ) { $data_vals = array_map( fn( $val ) => is_object( $val ) ? WPSC_Functions::set_object( self::$schema[ $var_name ]['ref_class'], $val ) : $val, $value ); $data_val = $data_vals ? implode( '|', $data_vals ) : ''; } else { $data_val = is_object( $value ) ? WPSC_Functions::set_object( self::$schema[ $var_name ]['ref_class'], $value ) : $value; } if ( $this->data[ $var_name ] == $data_val ) { return; } $this->data[ $var_name ] = $data_val; $this->is_modified = true; } /** * Save changes made * * @return boolean */ public function save() { global $wpdb; if ( ! $this->is_modified ) { return true; } $data = $this->data; $success = true; unset( $data['id'] ); $success = $wpdb->update( $wpdb->prefix . 'psmsc_options', $data, array( 'id' => $this->data['id'] ) ); // Set string translation.. WPSC_Translations::add( 'wpsc-option-' . $this->data['id'], $this->data['name'] ); $this->is_modified = false; self::$cache[ $this->id ] = $this; return $success ? true : false; } /** * Insert new record * * @param array $data - insert data. * @return WPSC_Option */ public static function insert( $data ) { global $wpdb; if ( ! isset( $data['load_order'] ) ) { $max_order = $wpdb->get_var( "SELECT MAX(load_order) FROM {$wpdb->prefix}psmsc_options" ); $data['load_order'] = intval( $max_order ) + 1; } $success = $wpdb->insert( $wpdb->prefix . 'psmsc_options', $data ); if ( ! $success ) { return false; } $id = $wpdb->insert_id; // string translation. WPSC_Translations::add( 'wpsc-option-' . $id, $data['name'] ); $option = new WPSC_Option( $id ); return $option; } /** * Delete record of given ID * * @param WPSC_Option $option - option object. * @return boolean */ public static function destroy( $option ) { global $wpdb; $success = $wpdb->delete( $wpdb->prefix . 'psmsc_options', array( 'id' => $option->id ) ); if ( ! $success ) { return false; } unset( self::$cache[ $option->id ] ); // remove string translations. WPSC_Translations::remove( 'wpsc-option-' . $option->id ); return true; } /** * Set data to create new object using direct data. Used in find method * * @param array $data - data to set for object. * @return void */ private function set_data( $data ) { foreach ( $data as $var_name => $val ) { if ( $var_name == 'name' ) { $this->data[ $var_name ] = $val !== null ? WPSC_Translations::get( 'wpsc-option-' . $data['id'], stripslashes( $val ) ) : ''; } else { $this->data[ $var_name ] = $val !== null ? $val : ''; } } self::$cache[ $this->id ] = $this; } /** * Find records based on given filters * * @param array $filter - array containing array items like search, where, orderby, order, page_no, items_per_page, etc. * @param boolean $is_object - return data as array or object. Default object. * @return mixed */ public static function find( $filter = array(), $is_object = true ) { global $wpdb; $sql = 'SELECT * FROM ' . $wpdb->prefix . 'psmsc_options '; $where = self::get_where( $filter ); $filter['items_per_page'] = isset( $filter['items_per_page'] ) ? $filter['items_per_page'] : 0; $filter['page_no'] = isset( $filter['page_no'] ) ? $filter['page_no'] : 0; $filter['orderby'] = isset( $filter['orderby'] ) ? $filter['orderby'] : 'load_order'; $filter['order'] = isset( $filter['order'] ) ? $filter['order'] : 'ASC'; $order = WPSC_Functions::parse_order( $filter ); $sql = $sql . $where . $order; $results = $wpdb->get_results( $sql, ARRAY_A ); // total results. $sql = 'SELECT count(id) FROM ' . $wpdb->prefix . 'psmsc_options '; $total_items = $wpdb->get_var( $sql . $where ); $response = WPSC_Functions::parse_response( $results, $total_items, $filter ); // Return array. if ( ! $is_object ) { return $response; } // create and return array of objects. $temp_results = array(); foreach ( $response['results'] as $option ) { $ob = new WPSC_Option(); $data = array(); foreach ( $option as $key => $val ) { $data[ $key ] = $val; } $ob->set_data( $data ); $temp_results[] = $ob; } $response['results'] = $temp_results; return $response; } /** * Get where for find method * * @param array $filter - user filter. * @return array */ private static function get_where( $filter ) { $where = array( '1=1' ); // Set user defined filters. $meta_query = isset( $filter['meta_query'] ) ? $filter['meta_query'] : array(); if ( $meta_query ) { $where[] = WPSC_Functions::parse_user_filters( __CLASS__, $meta_query ); } // Search. $search = WPSC_Functions::get_filter_search_str( $filter ); if ( $search ) { $search_query = array( 'CONVERT(name USING utf8) LIKE \'%' . $search . '%\'', ); $search_query = apply_filters( 'psc_option_search_query', $search_query, $filter ); $where[] = '( ' . implode( ' OR ', $search_query ) . ' )'; } return 'WHERE ' . implode( ' AND ', $where ) . ' '; } /** * Load current class to reference classes * * @param array $classes - Associative array of class names indexed by its slug. * @return array */ public static function load_ref_class( $classes ) { $classes['wpsc_option'] = array( 'class' => __CLASS__, 'save-key' => 'id', ); return $classes; } /** * Returns option ids to be used for search in ticket list * * @param string $search - search string. * @return array */ public static function get_tl_search_string( $search ) { $search_items = array(); if ( is_array( self::$tl_search_items ) ) { $search_items = self::$tl_search_items; } else { $options = self::find( array( 'search' => $search, 'items_per_page' => 0, ) )['results']; if ( $options ) { foreach ( $options as $option ) { $search_items[] = $option->id; } } self::$tl_search_items = $search_items; } return $search_items; } } endif; WPSC_Option::init();