Changeset 1863977
- Timestamp:
- 04/25/2018 06:09:50 AM (8 years ago)
- Location:
- simple-ga-ranking/trunk
- Files:
-
- 5 edited
-
readme.txt (modified) (2 diffs)
-
simple-ga-ranking.php (modified) (2 diffs)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (2 diffs)
-
vendor/composer/installed.json (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-ga-ranking/trunk/readme.txt
r1518997 r1863977 1 1 === Simple GA Ranking === 2 Contributors: horike,amimotoami 2 Contributors: horike,amimotoami,webnist,wokamoto,gatespace,mt8biz 3 3 Tags: form, ranking, popular, google analytics 4 4 Requires at least: 3.6.1 5 Tested up to: 4. 6.16 Stable tag: 2.0. 95 Tested up to: 4.9.5 6 Stable tag: 2.0.10 7 7 8 8 Ranking plugin using data from google analytics. … … 88 88 = 2.0.9 = 89 89 * fixed error that didn't dispaly your ranking on v2.0.8 90 = 2.0.10 = 91 * Abolished `create_function` for support PHP7.2 -
simple-ga-ranking/trunk/simple-ga-ranking.php
r1518997 r1863977 5 5 Plugin URI: http://simple-ga-ranking.org 6 6 Description: Ranking plugin using data from google analytics. 7 Version: 2.0. 97 Version: 2.0.10 8 8 Author URI: http://simple-ga-ranking.org 9 9 Domain Path: /languages 10 10 Text Domain: 11 11 12 Copyright 201 6 horike takahiro (email : horike37@gmail.com)12 Copyright 2018 digitalcube (email : info@digitalcube.jp) 13 13 14 14 This program is free software; you can redistribute it and/or modify … … 273 273 274 274 } 275 add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_Simple_GA_Ranking");')); 275 add_action('widgets_init', function() { 276 return register_widget('WP_Widget_Simple_GA_Ranking'); 277 }); 276 278 277 279 function sga_url_to_postid($url) -
simple-ga-ranking/trunk/vendor/autoload.php
r1518997 r1863977 5 5 require_once __DIR__ . '/composer' . '/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 6d9efb219459791dd844e269ff102475::getLoader();7 return ComposerAutoloaderInit82008e8395c481705f24fca9e6a4de3a::getLoader(); -
simple-ga-ranking/trunk/vendor/composer/autoload_real.php
r1518997 r1863977 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 6d9efb219459791dd844e269ff1024755 class ComposerAutoloaderInit82008e8395c481705f24fca9e6a4de3a 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 6d9efb219459791dd844e269ff102475', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit82008e8395c481705f24fca9e6a4de3a', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 6d9efb219459791dd844e269ff102475', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit82008e8395c481705f24fca9e6a4de3a', 'loadClassLoader')); 25 25 26 26 $map = require __DIR__ . '/autoload_namespaces.php'; -
simple-ga-ranking/trunk/vendor/composer/installed.json
r1168699 r1863977 28 28 } 29 29 }, 30 "installation-source": " dist",30 "installation-source": "source", 31 31 "autoload": { 32 32 "classmap": [ … … 65 65 "time": "2015-05-07 19:23:45", 66 66 "type": "library", 67 "installation-source": " dist",67 "installation-source": "source", 68 68 "autoload": { 69 69 "psr-0": {
Note: See TracChangeset
for help on using the changeset viewer.