Changeset 743162
- Timestamp:
- 07/19/2013 12:23:13 PM (13 years ago)
- Location:
- buddypress-social/trunk
- Files:
-
- 4 added
- 6 deleted
- 1 edited
-
activity-sharing.php (deleted)
-
admin-settings.php (deleted)
-
admin.php (added)
-
banner-772x250.png (deleted)
-
buddypress-social.php (added)
-
images (deleted)
-
includes (added)
-
includes/activity-sharing.php (added)
-
loader.php (modified) (3 diffs)
-
screenshot-1.png (deleted)
-
screenshot-2.png (deleted)
Legend:
- Unmodified
- Added
- Removed
-
buddypress-social/trunk/loader.php
r739643 r743162 1 <?php 1 <?php 2 2 /* 3 3 * Plugin Name: Buddypress Social 4 4 * Plugin URI: http://wordpress.org/plugins/buddypress-social/ 5 5 * Description: Bringing social engagement to Buddypress - let your community share to their hearts content all while promoting your website to social networks like Facebook and Twitter. 6 * Version: 1.036 * Version: 2.0 7 7 * Author: Charl Kruger 8 8 * Author URI: https://twitter.com/itscharlkruger … … 10 10 */ 11 11 12 // include admin settings 13 require( dirname( __FILE__ ) . '/admin-settings.php' ); 14 require( dirname( __FILE__ ) . '/activity-sharing.php' ); 12 function bp_social_init() { 13 require ( dirname( __FILE__ ) . '/admin.php' ); 14 require( dirname( __FILE__ ) . '/includes/activity-sharing.php' ); 15 } 16 add_action( 'bp_include', 'bp_social_init' ); 15 17 16 18 /** … … 58 60 echo '<style type="text/css"> 59 61 .social-buttons a { 60 color: ' . get_option(' my_components_settings')[buddy_social_color_0]. ';62 color: ' . get_option('social_button_color') . '; 61 63 } 62 64 .social-buttons a:hover { 63 color: ' . get_option(' my_components_settings')[buddy_social_color_1]. ';65 color: ' . get_option('social_button_color_hover') . '; 64 66 } 65 67 </style>'; 66 68 } 69 70 ?>
Note: See TracChangeset
for help on using the changeset viewer.