));
}
-$save_button = elgg_view('input/submit', array('value' => elgg_echo('save'), 'class' => 'submit_button'));
+$save_button = elgg_view('input/submit', array('value' => elgg_echo('save')));
$action_buttons = $save_button . $delete_link;
$title_label = elgg_echo('title');
if (isset($CONFIG->debug)) {
// create a button to run tests
$js = "onclick=\"window.location='".elgg_get_site_url()."engine/tests/suite.php'\"";
- $params = array('type' => 'button', 'value' => elgg_echo('diagnostics:test:executeall'), 'js' => $js);
+ $params = array('value' => elgg_echo('diagnostics:test:executeall'), 'js' => $js);
$test_body .= elgg_view('input/button', $params);
} else {
// no tests when not in debug mode
'internalid' => 'web_services_resource'
));
-$embed = elgg_view('input/button', array(
+$embed = elgg_view('input/submit', array(
'name' => 'buggy',
'internalid' => 'embed_submit',
'type' => 'button',
var value = $(this).val();
var value_length = value.length;
-
+
if (value_length > 0) {
//embed_button.removeAttr('disabled').removeClass('disabled');//.addClass('embed_warning');
url_status.removeClass('success').addClass('failure');
'value' => 'resend_validation',
));
-$form_body .= '<br />' . elgg_view('input/button', array('value' => elgg_echo('submit')));
+$form_body .= '<br />' . elgg_view('input/submit', array('value' => elgg_echo('submit')));
echo elgg_view('input/form', array(
'action' => 'action/uservalidationbyemail/bulk_action',
'value' => $show_category
));
-$category_button = elgg_view('input/button', array(
+$category_button = elgg_view('input/submit', array(
'value' => elgg_echo('filter'),
'class' => 'action_button'
));
* @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['internalname'] The name of the input field
- * @uses $vars['internalid'] The id of the input field
- * @uses $vars['type'] Submit, button, or reset, defaults to submit.
* @uses $vars['src'] Src of an image
- *
*/
global $CONFIG;
-if (isset($vars['class'])) {
- $class = $vars['class'];
-} else {
- $class = "submit_button";
-}
+$defaults = array(
+ 'type' => 'button',
+ 'class' => 'submit_button',
+);
-if (isset($vars['type'])) {
- $type = strtolower($vars['type']);
-} else {
- $type = 'button';
-}
+$vars = array_merge($defaults, $vars);
-switch ($type) {
- case 'button' :
- $type = 'button';
- break;
- case 'reset' :
- $type = 'reset';
- break;
+switch ($vars['type']) {
+ case 'button':
+ case 'reset':
case 'submit':
+ case 'image':
+ break;
default:
- $type = 'submit';
-}
-
-$value = htmlentities($vars['value'], ENT_QUOTES, 'UTF-8');
-
-$name = '';
-if (isset($vars['internalname'])) {
- $name = $vars['internalname'];
-}
-
-$src = '';
-if (isset($vars['src'])) {
- $src = "src=\"{$vars['src']}\"";
-}
-// blank src if trying to access an offsite image.
-if (strpos($src, $CONFIG->wwwroot) === false) {
- $src = "";
+ $vars['type'] = 'button';
+ break;
}
-$id = '';
-if (isset($vars['internalid'])) {
- $id = "id=\"{$vars['internalid']}\"";
+// blank src if trying to access an offsite image. @todo why?
+if (strpos($vars['src'], $CONFIG->wwwroot) === false) {
+ $vars['src'] = "";
}
-
?>
-<input name="<?php echo $name; ?>" <?php echo $id; ?> type="<?php echo $type; ?>" class="<?php echo $class; ?>" <?php echo $vars['js']; ?> value="<?php echo $value; ?>" <?php echo $src; ?> />
\ No newline at end of file
+<input <?php echo elgg_format_attributes($vars); ?> />
\ No newline at end of file
<?php
/**
* Create a reset input button
+ *
+ * @todo ... huh?
* Use this view for forms rather than creating a submit/reset button tag in the wild as it provides
* extra security which help prevent CSRF attacks.
*
* @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['internalname'] The name of the input field
- * @uses $vars['type'] Submit or reset, defaults to submit.
- *
*/
$vars['type'] = 'reset';
-$class = $vars['class'];
-if (!$class) {
- $class = "submit_button";
-}
-$vars['class'] = $class;
echo elgg_view('input/button', $vars);
\ No newline at end of file
<?php
/**
* Create a submit input button
+ *
+ * @todo ... huh?
* Use this view for forms rather than creating a submit/reset button tag in the wild as it provides
* extra security which help prevent CSRF attacks.
*
*/
$vars['type'] = 'submit';
-if (!isset($vars['class'])) {
- $vars['class'] = "submit_button";
-}
echo elgg_view('input/button', $vars);
\ No newline at end of file
*
* @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['internalname'] The name of the input field
- * @uses $vars['type'] Submit or reset, defaults to submit.
- *
*/
$vars['type'] = 'reset';
-$class = $vars['class'];
-if (!$class) {
- $class = "submit_button";
-}
-$vars['class'] = $class;
echo elgg_view('input/button', $vars);
\ No newline at end of file
*
* @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['internalname'] The name of the input field
- * @uses $vars['type'] Submit or reset, defaults to submit.
- *
*/
$vars['type'] = 'submit';
-$class = $vars['class'];
-if (!$class) {
- $class = "submit_button";
-}
-$vars['class'] = $class;
echo elgg_view('input/button', $vars);
\ No newline at end of file