aboutsummaryrefslogtreecommitdiff
path: root/views/default/widgets
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-05-14 02:14:29 +0200
committerSem <sembrestels@riseup.net>2012-05-14 02:14:29 +0200
commitff129471d04449bfddaed793864f161c71ae2573 (patch)
tree6a9ec35507717a93f36d6566e64fdbd08a4a18fe /views/default/widgets
parent2665d8f2eaa4fdbcf5790d8a5b9c1afe88e8f5c8 (diff)
downloadelgg-ff129471d04449bfddaed793864f161c71ae2573.tar.gz
elgg-ff129471d04449bfddaed793864f161c71ae2573.tar.bz2
Erased flash components.
Diffstat (limited to 'views/default/widgets')
-rw-r--r--views/default/widgets/social_share_index/content.php12
-rw-r--r--views/default/widgets/social_share_index/edit.php36
2 files changed, 0 insertions, 48 deletions
diff --git a/views/default/widgets/social_share_index/content.php b/views/default/widgets/social_share_index/content.php
deleted file mode 100644
index fefd1b795..000000000
--- a/views/default/widgets/social_share_index/content.php
+++ /dev/null
@@ -1,12 +0,0 @@
-
-<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
deleted file mode 100644
index 87557e2ba..000000000
--- a/views/default/widgets/social_share_index/edit.php
+++ /dev/null
@@ -1,36 +0,0 @@
- <?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