aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-05-17 22:18:47 +0000
committerCash Costello <cash.costello@gmail.com>2009-05-17 22:18:47 +0000
commit0328eb2da2ce7069df72b2036cf1ee4bda59f264 (patch)
tree88e9c1220d378cb0f2532e30eda6d18b17eeafb8 /views
parent3f48d3a3c2d98e8f2b2de9540f3bc5cd5c475dd2 (diff)
downloadelgg-0328eb2da2ce7069df72b2036cf1ee4bda59f264.tar.gz
elgg-0328eb2da2ce7069df72b2036cf1ee4bda59f264.tar.bz2
A little cleanup of old stuff
Diffstat (limited to 'views')
-rw-r--r--views/default/input/accessRead.php61
-rw-r--r--views/default/input/cover_checkbox.php6
-rw-r--r--views/default/input/multi_radio.php10
-rw-r--r--views/default/tidypics/hover_menu.php4
-rw-r--r--views/default/tidypics/icon.php4
-rw-r--r--views/rss/object/file.php9
6 files changed, 3 insertions, 91 deletions
diff --git a/views/default/input/accessRead.php b/views/default/input/accessRead.php
deleted file mode 100644
index 81392b19f..000000000
--- a/views/default/input/accessRead.php
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-
- /**
- * Elgg access level input
- * this is a custom input that disables the given value, but passes the value discreetly
- * we need this because using "disabled" inputs do not pass values and will store as default 0
- *
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- *
- * @uses $vars['value'] The current value, if any
- * @uses $vars['js'] Any Javascript to enter into the input tag
- * @uses $vars['internalname'] The name of the input field
- *
- */
-
- $class = $vars['class'];
- if (!$class) $class = "input-access";
-
- //default no array sent get all normal select values
- if (!is_array($vars['options']))
- {
- $vars['options'] = array();
- $vars['options'] = get_write_access_array();
- }
-
- //if sending custom select values via array
- if (is_array($vars['options']) && sizeof($vars['options']) > 0)
- {
-
- /* my hacks (pay no attention please =D )
- //allow showing of group for write access
- if($vars['group_write']) $vars['options'] = trigger_plugin_hook('access:collections:write','user',array('user_id' => $_SESSION['guid'], 'site_id' => 0),$vars['options']);
- */
-
- //developer check - to check the value being sent initially
- //echo 'given value: '.$vars['value'].'<br>';
-
- //if no value currently set - specify default
- if (empty($vars['value']) && $vars['value'] != '0')
- $vars['value'] = 2;
-
-
- foreach($vars['options'] as $key => $option) {
- if ($key == $vars['value']) {
-?>
- <input type="text" value="<?php echo htmlentities($option, null, 'UTF-8'); ?>" class="<?php echo $class ?>" DISABLED>
- <input type="hidden" name="<?php echo $vars['internalname']; ?>" value="<?php echo $key ;?>" <?php if (isset($vars['js'])) echo $vars['js']; ?> class="<?php echo $class; ?>">
-
-<?php
- }
- }
-
-
- }
-
-?> \ No newline at end of file
diff --git a/views/default/input/cover_checkbox.php b/views/default/input/cover_checkbox.php
index 48c7d51cc..04132661d 100644
--- a/views/default/input/cover_checkbox.php
+++ b/views/default/input/cover_checkbox.php
@@ -7,12 +7,6 @@
* it handles the checkboxes via arrays, but i only need one and i did not want to use time figuring it all out
* simple and sweet , one checkbox.
*
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
diff --git a/views/default/input/multi_radio.php b/views/default/input/multi_radio.php
index 11f4c13b8..3e3bb1649 100644
--- a/views/default/input/multi_radio.php
+++ b/views/default/input/multi_radio.php
@@ -1,15 +1,9 @@
<?php
/**
- * Elgg radio input
- * Displays a radio input field
+ * Multi radio input
+ * This is for selection of cover image
*
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
*
* @uses $vars['value'] The current value, if any
* @uses $vars['js'] Any Javascript to enter into the input tag
diff --git a/views/default/tidypics/hover_menu.php b/views/default/tidypics/hover_menu.php
index 4368993dd..a36c4be17 100644
--- a/views/default/tidypics/hover_menu.php
+++ b/views/default/tidypics/hover_menu.php
@@ -3,10 +3,6 @@
/**
* Elgg hoverover extender for tidypics
*
- * @package ElggFile
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @copyright Curverider Ltd 2008
- * @link http://elgg.com/
*/
?>
diff --git a/views/default/tidypics/icon.php b/views/default/tidypics/icon.php
index 614fa3ad0..c960bc00b 100644
--- a/views/default/tidypics/icon.php
+++ b/views/default/tidypics/icon.php
@@ -3,10 +3,6 @@
* Elgg tidypic icon
* Optionally you can specify a size.
*
- * @package ElggFile
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.com/
*/
global $CONFIG;
diff --git a/views/rss/object/file.php b/views/rss/object/file.php
index 3bd84d076..ace3e28e6 100644
--- a/views/rss/object/file.php
+++ b/views/rss/object/file.php
@@ -1,14 +1,7 @@
<?php
/**
- * Elgg RSS file object view
- *
- * @package ElggFile
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
+ * Tidypics RSS file object view - need to look into removing download link based on settings
*/
$title = $vars['entity']->title;