buddypress/0.1/bp-groups/bp-groups-cssjs.php
Andy Peatling 41d661924c Tagging groups 0.1
git-svn-id: https://buddypress.svn.wordpress.org/tags/groups@277 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2008-08-13 22:42:42 +00:00

35 lines
No EOL
933 B
PHP

<?php
/**************************************************************************
groups_add_js()
Inserts the Javascript needed for managing groups.
**************************************************************************/
function groups_add_js() {
global $bp;
if ( !isset($_GET['page']) )
$_GET['page'] = null;
if ( strpos( $_GET['page'], 'groups' ) !== false || $bp['current_component'] == $bp['groups']['slug'] ) {
echo '
<script src="' . get_option('siteurl') . '/wp-content/mu-plugins/bp-groups/js/general.js" type="text/javascript"></script>';
}
}
add_action( 'wp_head', 'groups_add_js' );
add_action( 'admin_menu', 'groups_add_js' );
/**************************************************************************
add_css()
Inserts the CSS needed to style the groups pages.
**************************************************************************/
function groups_add_css()
{
?>
<?php
}
?>