Version Description
- Forgot to remove a piece of code that's no longer used.
Download this release
Release Info
| Developer | joostdevalk |
| Plugin | |
| Version | 1.4.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.4 to 1.4.1
- clicky.php +9 -11
- readme.txt +5 -1
- yst_plugin_tools.php +0 -10
clicky.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: Clicky for WordPress
|
| 4 |
-
Version: 1.4
|
| 5 |
Plugin URI: http://getclicky.com/goodies/#wordpress
|
| 6 |
Description: Integrates Clicky on your blog!
|
| 7 |
Author: Joost de Valk
|
|
@@ -59,20 +59,18 @@ if ( ! class_exists( 'Clicky_Admin' ) ) {
|
|
| 59 |
}
|
| 60 |
|
| 61 |
function Clicky_Admin() {
|
| 62 |
-
add_action( 'admin_menu', array(&$this, 'register_settings_page') );
|
| 63 |
-
add_action( 'admin_menu', array(&$this, 'register_dashboard_page') );
|
| 64 |
|
| 65 |
-
add_filter( 'plugin_action_links', array(&$this, 'add_action_link'), 10, 2 );
|
| 66 |
-
add_filter( 'ozh_adminmenu_icon', array(&$this, 'add_ozh_adminmenu_icon' ) );
|
| 67 |
|
| 68 |
-
add_action('
|
| 69 |
-
add_action('admin_print_styles', array(&$this,'config_page_styles'));
|
| 70 |
|
| 71 |
-
add_action('admin_menu', array(&$this,'meta_box'));
|
| 72 |
-
add_action('publish_post', array(&$this,'clicky_insert_post')
|
| 73 |
|
| 74 |
-
|
| 75 |
-
add_action( 'wp_head', array(&$this,'stats_admin_bar_head') );
|
| 76 |
|
| 77 |
$this->clicky_admin_warnings();
|
| 78 |
}
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: Clicky for WordPress
|
| 4 |
+
Version: 1.4.1
|
| 5 |
Plugin URI: http://getclicky.com/goodies/#wordpress
|
| 6 |
Description: Integrates Clicky on your blog!
|
| 7 |
Author: Joost de Valk
|
| 59 |
}
|
| 60 |
|
| 61 |
function Clicky_Admin() {
|
| 62 |
+
add_action( 'admin_menu', array( &$this, 'register_settings_page' ) );
|
| 63 |
+
add_action( 'admin_menu', array( &$this, 'register_dashboard_page' ) );
|
| 64 |
|
| 65 |
+
add_filter( 'plugin_action_links', array( &$this, 'add_action_link' ), 10, 2 );
|
| 66 |
+
add_filter( 'ozh_adminmenu_icon', array( &$this, 'add_ozh_adminmenu_icon' ) );
|
| 67 |
|
| 68 |
+
add_action( 'admin_print_styles', array( &$this,'config_page_styles' ) );
|
|
|
|
| 69 |
|
| 70 |
+
add_action( 'admin_menu', array( &$this, 'meta_box' ) );
|
| 71 |
+
add_action( 'publish_post', array( &$this, 'clicky_insert_post' ) ;
|
| 72 |
|
| 73 |
+
add_action( 'wp_head', array( &$this, 'stats_admin_bar_head') );
|
|
|
|
| 74 |
|
| 75 |
$this->clicky_admin_warnings();
|
| 76 |
}
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: http://yoast.com/donate/
|
|
| 4 |
Tags: analytics, statistics, clicky, getclicky, affiliate, outbound links, analysis, Joost de Valk, Yoast
|
| 5 |
Requires at least: 2.8
|
| 6 |
Tested up to: 3.3
|
| 7 |
-
Stable tag: 1.4
|
| 8 |
|
| 9 |
Integrates the Clicky (from getClicky.com) web analytics service into your blog.
|
| 10 |
|
|
@@ -38,6 +38,10 @@ Read the authors [review of Clicky Analytics](http://yoast.com/clicky-analytics-
|
|
| 38 |
|
| 39 |
== Changelog ==
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
= 1.4 =
|
| 42 |
|
| 43 |
* Interface cleanup, interface no longer breaks on smaller resolutions.
|
| 4 |
Tags: analytics, statistics, clicky, getclicky, affiliate, outbound links, analysis, Joost de Valk, Yoast
|
| 5 |
Requires at least: 2.8
|
| 6 |
Tested up to: 3.3
|
| 7 |
+
Stable tag: 1.4.1
|
| 8 |
|
| 9 |
Integrates the Clicky (from getClicky.com) web analytics service into your blog.
|
| 10 |
|
| 38 |
|
| 39 |
== Changelog ==
|
| 40 |
|
| 41 |
+
= 1.4.1 =
|
| 42 |
+
|
| 43 |
+
* Forgot to remove a piece of code that's no longer used.
|
| 44 |
+
|
| 45 |
= 1.4 =
|
| 46 |
|
| 47 |
* Interface cleanup, interface no longer breaks on smaller resolutions.
|
yst_plugin_tools.php
CHANGED
|
@@ -16,16 +16,6 @@ if (!class_exists('Clicky_Base_Plugin_Admin')) {
|
|
| 16 |
var $homepage = '';
|
| 17 |
var $accesslvl = 'manage_options';
|
| 18 |
|
| 19 |
-
function Yoast_Plugin_Admin() {
|
| 20 |
-
add_action( 'admin_menu', array(&$this, 'register_settings_page') );
|
| 21 |
-
add_filter( 'plugin_action_links', array(&$this, 'add_action_link'), 10, 2 );
|
| 22 |
-
|
| 23 |
-
add_action('admin_print_scripts', array(&$this,'config_page_scripts'));
|
| 24 |
-
add_action('admin_print_scripts', array(&$this,'config_page_styles'));
|
| 25 |
-
|
| 26 |
-
add_action('wp_dashboard_setup', array(&$this,'widget_setup'));
|
| 27 |
-
}
|
| 28 |
-
|
| 29 |
function config_page_styles() {
|
| 30 |
if (isset($_GET['page']) && $_GET['page'] == $this->hook) {
|
| 31 |
wp_enqueue_style('clicky-admin-css', WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)). '/yst_plugin_tools.css');
|
| 16 |
var $homepage = '';
|
| 17 |
var $accesslvl = 'manage_options';
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
function config_page_styles() {
|
| 20 |
if (isset($_GET['page']) && $_GET['page'] == $this->hook) {
|
| 21 |
wp_enqueue_style('clicky-admin-css', WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)). '/yst_plugin_tools.css');
|
