Changeset 725556
- Timestamp:
- 06/12/2013 06:00:27 AM (13 years ago)
- Location:
- gplus-comments/trunk
- Files:
-
- 37 added
- 5 deleted
- 1 edited
-
assets (added)
-
assets/images (added)
-
assets/images/icons (added)
-
assets/images/icons/default (added)
-
assets/images/icons/default/disqus.png (added)
-
assets/images/icons/default/facebook.png (added)
-
assets/images/icons/default/gplus.png (added)
-
assets/images/icons/default/livefyre.png (added)
-
assets/images/icons/default/trackback.png (added)
-
assets/images/icons/default/wordpress.png (added)
-
assets/images/icons/monotone (added)
-
assets/images/icons/monotone/disqus.png (added)
-
assets/images/icons/monotone/facebook.png (added)
-
assets/images/icons/monotone/gplus.png (added)
-
assets/images/icons/monotone/livefyre.png (added)
-
assets/images/icons/monotone/trackback.png (added)
-
assets/images/icons/monotone/wordpress.png (added)
-
assets/images/ui_tab_arrow_h.png (added)
-
assets/javascript (added)
-
assets/javascript/plugin.js (added)
-
assets/styles (added)
-
assets/styles/less (added)
-
assets/styles/less/plugin.less (added)
-
assets/styles/plugin.css (added)
-
gplus-comments.php (modified) (3 diffs)
-
images (deleted)
-
includes (added)
-
includes/lib (added)
-
includes/lib/admin.php (added)
-
includes/lib/hooks.php (added)
-
includes/templates (added)
-
includes/templates/container.php (added)
-
includes/templates/partials (added)
-
includes/templates/partials/disqus.php (added)
-
includes/templates/partials/facebook.php (added)
-
includes/templates/partials/gplus.php (added)
-
includes/templates/partials/livefyre.php (added)
-
includes/templates/partials/trackback.php (added)
-
includes/templates/partials/wordpress.php (added)
-
js (deleted)
-
lib (deleted)
-
styles (deleted)
-
templates (deleted)
Legend:
- Unmodified
- Added
- Removed
-
gplus-comments/trunk/gplus-comments.php
r718087 r725556 1 1 <?php 2 2 /* 3 Plugin Name: Google+ Comments3 Plugin Name: Comments Evolved 4 4 Plugin URI: http://www.cloudhero.net/gplus-comments 5 Description: Google+ Comments for WordPress plugin adds Google Plus comments along side your native WordPress comment system in a responsive tabinterface.5 Description: The Comments Evolved for WordPress plugin adds the ability to enable native WordPress, Google+, Facebook, Disqus, Livefyre, Twitter comment systems easily through the Admin webinterface. 6 6 Author: Brandon Holtsclaw <me@brandonholtsclaw.com> 7 7 Author URI: http://www.brandonholtsclaw.com/ … … 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 10 Donate link: http://www.wepay.com/donations/brandonholtsclaw 11 Version: 1.4.1 311 Version: 1.4.16 12 12 */ 13 13 14 /**15 * DEVELOPERS AND THEMERS : DONT EDIT THIS FILE DIRECTLY16 * THERE ARE INSTRUCTIONS ON THE PLUGINS WEBPAGE TO CUSTOMIZE IT17 * SO THAT IT WONT BE LOST ON PLUGIN UPATES.18 */19 20 // No direct access21 14 defined('ABSPATH') or exit; 22 15 … … 48 41 defined('GPLUS_COMMENTS_DIR') or define('GPLUS_COMMENTS_DIR', __DIR__); 49 42 defined('GPLUS_COMMENTS_URL') or define('GPLUS_COMMENTS_URL', rtrim(plugin_dir_url(__FILE__),"/")); 50 defined('GPLUS_COMMENTS_LIB') or define('GPLUS_COMMENTS_LIB', GPLUS_COMMENTS_DIR . "/ lib");51 defined('GPLUS_COMMENTS_TEMPLATES') or define('GPLUS_COMMENTS_TEMPLATES', GPLUS_COMMENTS_DIR . "/ templates");43 defined('GPLUS_COMMENTS_LIB') or define('GPLUS_COMMENTS_LIB', GPLUS_COMMENTS_DIR . "/includes/lib"); 44 defined('GPLUS_COMMENTS_TEMPLATES') or define('GPLUS_COMMENTS_TEMPLATES', GPLUS_COMMENTS_DIR . "/includes/templates"); 52 45 defined('GPLUS_COMMENTS_DEFAULT_TAB_ORDER') or define('GPLUS_COMMENTS_DEFAULT_TAB_ORDER', 'gplus,facebook,wordpress'); 53 46 54 47 require GPLUS_COMMENTS_LIB . '/hooks.php'; 55 function gplus_comments_render_admin_page() { require GPLUS_COMMENTS_LIB . '/admin.php'; } 48 49 if ( is_admin() && ( !defined( 'DOING_AJAX' ) || !DOING_AJAX ) ) 50 { 51 function gplus_comments_admin() { require GPLUS_COMMENTS_LIB . '/admin.php'; } 52 } 53 else 54 { 55 //require 'class-frontend.php'; 56 } 56 57 57 58 /*
Note: See TracChangeset
for help on using the changeset viewer.