Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP7 Decoder for ionCube Encoder)
- *
- * @ Version : 4.1.0.1
- * @ Author : DeZender
- * @ Release on : 29.08.2020
- * @ Official site : http://DeZender.Net
- *
- */
- namespace Architect\Api\GoogleSearch\Modules;
- class Module
- {
- protected $domain = 'google.com';
- protected $lang = 'en';
- protected $search = false;
- static protected $contents = [];
- public function __construct($language)
- {
- if ($language !== NULL) {
- $this->domain = $language['google_domain'];
- $this->lang = $language['id'];
- }
- }
- private function request($settings)
- {
- $this->preRequest($settings);
- ...................................................................
- .......................................
- ....................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement