]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixes #2321: Deprecated input/datepicker and output/calendar in favor of input/date...
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 5 Mar 2011 06:23:18 +0000 (06:23 +0000)
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 5 Mar 2011 06:23:18 +0000 (06:23 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@8582 36083f99-b078-4883-b0ff-0f9b5a30f544

js/lib/ui.js
views/default/input/date.php [new file with mode: 0644]
views/default/input/datepicker.php
views/default/output/calendar.php
views/default/output/date.php

index 3118bb408ff1c5438bb83ef2290dd5da456b9b4a..6da7e7470b92dbf901d6cef216c1c45d39daf1fd 100644 (file)
@@ -19,6 +19,8 @@ elgg.ui.init = function () {
        $('.elgg-like-toggle').live('click', elgg.ui.toggleLikes);
 
        $('.elgg-requires-confirmation').live('click', elgg.ui.requiresConfirmation);
+       
+       $('.elgg-input-date').datepicker();
 }
 
 /**
diff --git a/views/default/input/date.php b/views/default/input/date.php
new file mode 100644 (file)
index 0000000..afc40e8
--- /dev/null
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Elgg date input
+ * Displays a text field with a popup date picker.
+ *
+ * @package Elgg
+ * @subpackage Core
+ *
+ * @uses $vars['value'] The current value, if any (as a unix timestamp)
+ *
+ */
+
+$defaults = array(
+       'value' => '',
+       'class' => '',
+);
+
+$vars = array_merge($defaults, $vars);
+
+//@todo popup_calendar deprecated in 1.8.  Remove in 2.0
+$vars['class'] = trim("elgg-input-date popup_calendar {$vars['class']}");
+
+if ($vars['value'] > 86400) {
+       $vars['value'] = date('n/d/Y', $vars['value']);
+}
+
+$attributes = elgg_format_attributes($vars);
+
+?>
+<input type="text" <?php echo $attributes; ?> />
\ No newline at end of file
index 4af54096bec9781db003219be1ffc0c324fe4210..8955e6e5302d26f284cd4211e242d07ecbb46d05 100644 (file)
@@ -1,37 +1,6 @@
 <?php
 /**
- * Elgg datepicker input
- * Displays a text field with a popup date picker.
- *
- * @package Elgg
- * @subpackage Core
- *
- * @uses $vars['value'] The current value, if any
- * @uses $vars['js'] Any Javascript to enter into the input tag
- * @uses $vars['name'] The name of the input field
- *
+ * @deprecated use input/date instead
  */
-
-$cal_name = sanitise_string($vars['name']);
-
-if (isset($vars['class'])) {
-       $class = "{$vars['class']} popup_calendar";
-} else {
-       $class = 'popup_calendar';
-}
-
-if ($vars['value'] > 86400) {
-       //$val = date("F j, Y", $vars['value']);
-       $val = date('n/d/Y', $vars['value']);
-} else {
-       $val = $vars['value'];
-}
-
-?>
-<input type="text" name="<?php echo $vars['name']; ?>" value="<?php echo $val; ?>" />
-<?php //@todo JS 1.8: no ?>
-<script type="text/javascript">
-       $(document).ready(function() {
-               $('input[type=text][name=<?php echo $cal_name; ?>]').datepicker();
-       });
-</script>
+elgg_deprecated_notice('input/datepicker was deprecated in favor of input/date', 1.8);
+echo elgg_view('input/date', $vars);
\ No newline at end of file
index 8729fa1c55c3c6fbcdb76ad4f68e68b566391700..fa0bd0c0403ec2c145ee0d585d2b76be54d4b167 100644 (file)
@@ -9,9 +9,5 @@
  * @uses $vars['value'] The current value, if any
  *
  */
-
-if (is_int($vars['value'])) {
-       echo date("F j, Y", $vars['value']);
-} else {
-       echo htmlspecialchars($vars['value'], ENT_QUOTES, 'UTF-8');
-}
\ No newline at end of file
+elgg_deprecated_notice('output/calendar was deprecated in favor of output/date', 1.8);
+echo elgg_view('output/date', $vars);
\ No newline at end of file
index bd8a65714dfed96f5f8636f96635e995b988a86c..fda7668e771a2aa3dcd0ac4603afa4d991691826 100644 (file)
@@ -11,5 +11,5 @@
  */
 
 if ($vars['value'] > 86400) {
-       echo date("F j, Y",$vars['value']);
+       echo date("n/d/Y", $vars['value']);
 }
\ No newline at end of file