<?php
/**
* #extra for network/%network/group/%group
*/
if (!($network = network_load(arg(1)))) {
return;
}
if (!($group = group_load(arg(1)))) {
return;
}
add_js('misc/dialog.js');
global $theme;
add_css(get_path('theme', $theme) . '/dialog.css');
?>
<div id="extra">
<ul class="quick-links-list">
<li>
<a class="quick-link" title="<?php print t('Add Members') ?>" dialog-data-url="<?php print url('network/' . $network->nid . '/group/' . $group->gid . '/js/add-members') ?>" dialog-title="<?php print t('Add Members') ?>" href="#">
<span class="inline-icon add-members-icon"></span>
<?php print t('Add Members') ?>
</a>
</li>
<li class="debug">
<a class="quick-link" title="<?php print t('Upload a File') ?>" data-url="" href="#">
<span class="inline-icon upload-icon"></span>
<?php print t('Upload a File') ?>
</a>
</li>
<li class="debug">
<a class="quick-link" title="<?php print t('Create a Page') ?>" href="#">
<span class="inline-icon page-pen-icon"></span>
<?php print t('Create a Page') ?>
</a>
</li>
</ul>
</div>