PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
mycred
/
abstracts
<?php if ( ! defined( 'myCRED_VERSION' ) ) exit; /** * myCRED_Object class * @see http://codex.mycred.me/classes/mycred_object/ * @since 1.7 * @version 1.1 */ if ( ! class_exists( 'myCRED_Object' ) ) : abstract class myCRED_Object { /** * Construct */ function __construct() { } /** * Get */ public function get( $name = '', $nothing = false ) { if ( $name == '' ) return $nothing; $value = $nothing; if ( is_array( $name ) && ! empty( $name ) ) { foreach ( $name as $key => $array_value ) { // Example 1: array( 'balance' => 'mycred_default' ) // $this->balance['mycred_default'] if ( isset( $this->$key ) ) { if ( $array_value != '' && is_array( $this->$key ) && ! empty( $this->$key ) && array_key_exists( $array_value, $this->$key ) ) $value = $this->$key[ $array_value ]; } // Example 2: array( 'total' ) // $this->total elseif ( isset( $this->$array_value ) ) $value = $this->$array_value; } } elseif ( ! is_array( $name ) && ! empty( $name ) ) { if ( isset( $this->$name ) ) $value = $this->$name; } return $value; } /** * Set */ public function set( $name = '', $new_value = false ) { if ( $name == '' ) return false; if ( is_array( $name ) && ! empty( $name ) ) { foreach ( $name as $key => $array_value ) { // Example 1: array( 'balance' => 'mycred_default' ) // $this->balance['mycred_default'] if ( isset( $this->$key ) ) { if ( $array_value != '' ) { if ( ! is_array( $this->$key ) ) $this->$key = array(); $this->$key[ $array_value ] = $new_value; } } // Example 2: array( 'total' ) // $this->total elseif ( isset( $this->$array_value ) ) $this->$value = $new_value; } } elseif ( ! is_array( $name ) && ! empty( $name ) && isset( $this->$name ) ) { $this->$name = $new_value; } return true; } } endif;
[+]
..
[-] mycred-abstract-hook.php
[edit]
[-] mycred-abstract-module.php
[edit]
[-] index.php
[edit]
[-] mycred-abstract-object.php
[edit]