diff options
author | Fx Nion <http://fxnion.free.fr> | 2012-05-13 19:56:15 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-05-13 19:56:15 +0200 |
commit | b070daa95241bc0c7d46011a3de7674fbf0c5e68 (patch) | |
tree | 638f771d1708194ab4a1cfb9614b73cd9fbaca5f /views/default/widgets/social_share_index | |
download | elgg-b070daa95241bc0c7d46011a3de7674fbf0c5e68.tar.gz elgg-b070daa95241bc0c7d46011a3de7674fbf0c5e68.tar.bz2 |
v2.4
Diffstat (limited to 'views/default/widgets/social_share_index')
-rw-r--r-- | views/default/widgets/social_share_index/content.php | 12 | ||||
-rw-r--r-- | views/default/widgets/social_share_index/edit.php | 36 |
2 files changed, 48 insertions, 0 deletions
diff --git a/views/default/widgets/social_share_index/content.php b/views/default/widgets/social_share_index/content.php new file mode 100644 index 000000000..fefd1b795 --- /dev/null +++ b/views/default/widgets/social_share_index/content.php @@ -0,0 +1,12 @@ +
+<div class="contentWrapper">
+ <!-- AddToAny BEGIN -->
+ <a class="a2a_dd" href="http://www.addtoany.com/share_save"><img src="http://static.addtoany.com/buttons/share_save_256_24.png" width="256" height="24" border="0" alt="Share"/></a>
+ <script type="text/javascript">
+ var a2a_config = a2a_config || {};
+ a2a_config.onclick = 1;
+ </script>
+ <script type="text/javascript" src="http://static.addtoany.com/menu/page.js"></script>
+ <!-- AddToAny END -->
+ <div class="clearfloat"></div>
+</div>
\ No newline at end of file diff --git a/views/default/widgets/social_share_index/edit.php b/views/default/widgets/social_share_index/edit.php new file mode 100644 index 000000000..87557e2ba --- /dev/null +++ b/views/default/widgets/social_share_index/edit.php @@ -0,0 +1,36 @@ + <?php + + + $widget_title = $vars['entity']->widget_title; + $guest_only = $vars['entity']->guest_only; + if (!isset($guest_only)) $guest_only = "no"; + + $box_style = $vars['entity']->box_style; + if (!isset($box_style)) $box_style = "collapsable"; + ?> + <p> + <?php echo elgg_echo('custom_index_widgets:widget_title'); ?> + : + <?php + echo elgg_view('input/text', array('name'=>'params[widget_title]', 'value'=>$widget_title)); + ?> + </p> + +<p> + <?php echo elgg_echo('custom_index_widgets:box_style'); ?> + : + <?php + echo elgg_view('input/dropdown', array('name'=>'params[box_style]', + 'options_values'=>array('plain'=>'Plain', 'plain collapsable'=>'Plain and collapsable', 'collapsable'=>'Collapsable', 'standard' => 'No Collapsable'), + 'value'=>$box_style)); + ?> +</p> +<p> + <?php echo elgg_echo('custom_index_widgets:guest_only'); ?> + : + <?php + echo elgg_view('input/dropdown', array('name'=>'params[guest_only]', + 'options_values'=>array('yes'=>'yes', 'no'=>'no'), + 'value'=>$guest_only)); + ?> +</p>
\ No newline at end of file |