Changeset 3112333
- Timestamp:
- 07/04/2024 10:14:19 AM (21 months ago)
- Location:
- nativerent/trunk
- Files:
-
- 7 edited
-
inc/Admin/Controller.php (modified) (1 diff)
-
inc/Admin/Requests/Auth.php (modified) (3 diffs)
-
nativerent.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (5 diffs)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nativerent/trunk/inc/Admin/Controller.php
r3110316 r3112333 147 147 wpnrent_get_domain(), 148 148 $request->login, 149 $request-> password149 $request->getPassword() 150 150 ); 151 151 if ( $res['success'] ) { -
nativerent/trunk/inc/Admin/Requests/Auth.php
r3062141 r3112333 2 2 3 3 namespace NativeRent\Admin\Requests; 4 5 use function sanitize_email; 6 use function sanitize_text_field; 7 use function wp_unslash; 4 8 5 9 /** … … 17 21 * @readonly 18 22 */ 19 #[\SensitiveParameter] 20 public $password; 23 private $password; 21 24 22 25 public function __construct() { … … 30 33 } 31 34 } 35 36 /** 37 * @return string|null 38 */ 39 public function getPassword() { 40 return $this->password; 41 } 32 42 } -
nativerent/trunk/nativerent.php
r3110316 r3112333 4 4 * Plugin URI: https://wordpress.org/plugins/nativerent/ 5 5 * Description: Релевантная реклама для ваших читателей. Рекламодатели сервиса платят в 2-3 раза больше за 1 тыс. показов страниц, чем привычные рекламные сетки. Страница выкупается полностью, на ней размещается максимум четыре рекламных блока, которые выглядят нативно в стиле сайта. 6 * Version: 2.0. 56 * Version: 2.0.6 7 7 * Requires at least: 4.9 8 8 * Tested up to: 6.5.5 … … 28 28 // Plugin version. 29 29 if ( ! defined( 'NATIVERENT_PLUGIN_VERSION' ) ) { 30 define( 'NATIVERENT_PLUGIN_VERSION', '2.0. 5' );30 define( 'NATIVERENT_PLUGIN_VERSION', '2.0.6' ); 31 31 } 32 32 // Plugin Folder Path. -
nativerent/trunk/readme.txt
r3110316 r3112333 7 7 Tested up to: 6.5.5 8 8 Requires PHP: 5.6.20 9 Stable tag: 2.0. 59 Stable tag: 2.0.6 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
nativerent/trunk/vendor/autoload.php
r3110316 r3112333 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit c1cd0da745a904ff8145ae85d81aa8c2::getLoader();7 return ComposerAutoloaderInita67ea6c12418eea908e0625d5c9056f6::getLoader(); -
nativerent/trunk/vendor/composer/autoload_real.php
r3110316 r3112333 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit c1cd0da745a904ff8145ae85d81aa8c25 class ComposerAutoloaderInita67ea6c12418eea908e0625d5c9056f6 6 6 { 7 7 private static $loader; … … 23 23 } 24 24 25 spl_autoload_register(array('ComposerAutoloaderInit c1cd0da745a904ff8145ae85d81aa8c2', 'loadClassLoader'), true, true);25 spl_autoload_register(array('ComposerAutoloaderInita67ea6c12418eea908e0625d5c9056f6', 'loadClassLoader'), true, true); 26 26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 27 spl_autoload_unregister(array('ComposerAutoloaderInit c1cd0da745a904ff8145ae85d81aa8c2', 'loadClassLoader'));27 spl_autoload_unregister(array('ComposerAutoloaderInita67ea6c12418eea908e0625d5c9056f6', 'loadClassLoader')); 28 28 29 29 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 31 31 require __DIR__ . '/autoload_static.php'; 32 32 33 call_user_func(\Composer\Autoload\ComposerStaticInit c1cd0da745a904ff8145ae85d81aa8c2::getInitializer($loader));33 call_user_func(\Composer\Autoload\ComposerStaticInita67ea6c12418eea908e0625d5c9056f6::getInitializer($loader)); 34 34 } else { 35 35 $map = require __DIR__ . '/autoload_namespaces.php'; … … 52 52 53 53 if ($useStaticLoader) { 54 $includeFiles = Composer\Autoload\ComposerStaticInit c1cd0da745a904ff8145ae85d81aa8c2::$files;54 $includeFiles = Composer\Autoload\ComposerStaticInita67ea6c12418eea908e0625d5c9056f6::$files; 55 55 } else { 56 56 $includeFiles = require __DIR__ . '/autoload_files.php'; 57 57 } 58 58 foreach ($includeFiles as $fileIdentifier => $file) { 59 composerRequire c1cd0da745a904ff8145ae85d81aa8c2($fileIdentifier, $file);59 composerRequirea67ea6c12418eea908e0625d5c9056f6($fileIdentifier, $file); 60 60 } 61 61 … … 69 69 * @return void 70 70 */ 71 function composerRequire c1cd0da745a904ff8145ae85d81aa8c2($fileIdentifier, $file)71 function composerRequirea67ea6c12418eea908e0625d5c9056f6($fileIdentifier, $file) 72 72 { 73 73 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
nativerent/trunk/vendor/composer/autoload_static.php
r3110316 r3112333 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit c1cd0da745a904ff8145ae85d81aa8c27 class ComposerStaticInita67ea6c12418eea908e0625d5c9056f6 8 8 { 9 9 public static $files = array ( … … 165 165 { 166 166 return \Closure::bind(function () use ($loader) { 167 $loader->prefixLengthsPsr4 = ComposerStaticInit c1cd0da745a904ff8145ae85d81aa8c2::$prefixLengthsPsr4;168 $loader->prefixDirsPsr4 = ComposerStaticInit c1cd0da745a904ff8145ae85d81aa8c2::$prefixDirsPsr4;169 $loader->classMap = ComposerStaticInit c1cd0da745a904ff8145ae85d81aa8c2::$classMap;167 $loader->prefixLengthsPsr4 = ComposerStaticInita67ea6c12418eea908e0625d5c9056f6::$prefixLengthsPsr4; 168 $loader->prefixDirsPsr4 = ComposerStaticInita67ea6c12418eea908e0625d5c9056f6::$prefixDirsPsr4; 169 $loader->classMap = ComposerStaticInita67ea6c12418eea908e0625d5c9056f6::$classMap; 170 170 171 171 }, null, ClassLoader::class);
Note: See TracChangeset
for help on using the changeset viewer.