You are here

class Get in Anti Spam by CleanTalk 8.4

Same name and namespace in other branches
  1. 9.1.x src/lib/Cleantalk/Common/Variables/Get.php \Cleantalk\Common\Variables\Get

Class Get Safety handler for $_GET

@since 3.0 @package Cleantalk\Variables

Hierarchy

Expanded class hierarchy of Get

4 files declare their use of Get
Firewall.php in src/lib/Cleantalk/Common/Firewall/Firewall.php
FirewallModule.php in src/lib/Cleantalk/Common/Firewall/FirewallModule.php
FirewallUpdater.php in src/lib/Cleantalk/Common/Firewall/FirewallUpdater.php
RemoteCalls.php in src/lib/Cleantalk/Common/RemoteCalls.php

File

src/lib/Cleantalk/Common/Variables/Get.php, line 12

Namespace

Cleantalk\Common\Variables
View source
class Get extends SuperGlobalVariables {
  static $instance;

  /**
   * Gets given $_GET variable and save it to memory
   *
   * @param string $name
   * @param bool $do_decode
   *
   * @return mixed|string
   */
  protected function get_variable($name, $do_decode = true) {

    // Return from memory. From $this->variables
    if (isset(static::$instance->variables[$name])) {
      return static::$instance->variables[$name];
    }
    if (function_exists('filter_input')) {
      $value = filter_input(INPUT_GET, $name);
    }
    if (empty($value)) {
      $value = isset($_GET[$name]) ? $_GET[$name] : '';
    }
    $value = $do_decode ? urldecode($value) : $value;

    // Remember for further calls
    static::getInstance()
      ->remember_variable($name, $value);
    return $value;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Get::$instance static property Overrides Singleton::$instance
Get::get_variable protected function * Gets given $_GET variable and save it to memory * * Overrides SuperGlobalVariables::get_variable
Singleton::getInstance public static function Constructor
Singleton::init protected function Alternative constructor
Singleton::__clone public function
Singleton::__construct public function
Singleton::__wakeup public function
SuperGlobalVariables::$variables public property *
SuperGlobalVariables::equal static function * Checks if variable equal to $param * *
SuperGlobalVariables::get public static function * Gets variable from ${_SOMETHING} * *
SuperGlobalVariables::has_string static function * Checks if variable contains given string * *
SuperGlobalVariables::remember_variable protected function * Save variable to $this->variables[] * *