diff options
Diffstat (limited to 'views/default/widgets/rich_media_index')
-rw-r--r-- | views/default/widgets/rich_media_index/content.php | 27 | ||||
-rw-r--r-- | views/default/widgets/rich_media_index/edit.php | 78 |
2 files changed, 0 insertions, 105 deletions
diff --git a/views/default/widgets/rich_media_index/content.php b/views/default/widgets/rich_media_index/content.php deleted file mode 100644 index dddc32bd7..000000000 --- a/views/default/widgets/rich_media_index/content.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php
-
- $widget_video_width = $vars['entity']->widget_video_width;
- $widget_video_height = $vars['entity']->widget_video_height;
- $widget_video_url = $vars['entity']->widget_video_url;
- $widget_video_caption = $vars['entity']->widget_video_caption;
-
- if (!isset($widget_video_width)){
- $widget_video_width = '250';
- }
- if (!isset($widget_video_height)){
- $widget_video_height = '250';
- }
-
-?>
-
-<div class="contentWrapper" align="center">
- <a id="media<?php echo $vars['entity']->getGUID();?>" class="media" href="<?php echo $widget_video_url;?>"><?php echo $widget_video_title;?></a> <div class="clearfloat">
- </div>
-</div>
-<?php if (isset($widget_video_url)) { ?>
-<script type="text/javascript">
- jQuery(document).ready(function($){
- $('#media<?php echo $vars['entity']->getGUID();?>').media({width:<?php echo $widget_video_width;?>, height:<?php echo $widget_video_height;?>, autoplay: true});
- });
-</script>
-<?php } ?>
\ No newline at end of file diff --git a/views/default/widgets/rich_media_index/edit.php b/views/default/widgets/rich_media_index/edit.php deleted file mode 100644 index a3956159c..000000000 --- a/views/default/widgets/rich_media_index/edit.php +++ /dev/null @@ -1,78 +0,0 @@ -<?php
- $widget_title = $vars['entity']->widget_title;
- $widget_video_width = $vars['entity']->widget_video_width;
- $widget_video_height = $vars['entity']->widget_video_height;
- $widget_video_url = $vars['entity']->widget_video_url;
- $widget_video_title = $vars['entity']->widget_video_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:widget_video_caption'); ?>
-<?php
- echo elgg_view('input/text', array(
- 'name' => 'params[widget_video_caption]',
- 'value' => $widget_video_caption
- ));
- ?>
-</p>
-<p>
-<?php echo elgg_echo('custom_index_widgets:widget_video_url'); ?>
-<?php
- echo elgg_view('input/text', array(
- 'name' => 'params[widget_video_url]',
- 'value' => $widget_video_url
- ));
- ?>
-</p>
-<p>
-<?php echo elgg_echo('custom_index_widgets:widget_video_width'); ?>
-<?php
- echo elgg_view('input/text', array(
- 'name' => 'params[widget_video_width]',
- 'value' => $widget_video_width
- ));
- ?>
-</p>
-<p>
-<?php echo elgg_echo('custom_index_widgets:widget_video_height'); ?>
-<?php
- echo elgg_view('input/text', array(
- 'name' => 'params[widget_video_height]',
- 'value' => $widget_video_height
- ));
- ?>
-</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>
-
|