Added vim fold markers to the methods.

This commit is contained in:
Josh Sherman 2011-05-09 22:33:01 -04:00
parent 996241debb
commit d5085ba6b9

View file

@ -9,7 +9,7 @@
* Redistribution of these files must retain the above copyright notice.
*
* @author Josh Sherman <josh@gravityblvd.com>
* @copyright Copyright 2007-2011, Josh Sherman
* @copyright Copyright 2007-2011, Josh Sherman
* @license http://www.opensource.org/licenses/mit-license.html
* @package PICKLES
* @link http://p.ickl.es
@ -23,6 +23,8 @@
*/
class Form extends Object
{
// {{{ Get Instance
/**
* Get Instance
*
@ -37,6 +39,9 @@ class Form extends Object
return parent::getInstance($class);
}
// }}}
// {{{ Input
/**
* Input
*
@ -59,6 +64,9 @@ class Form extends Object
return '<input type="' . $type . '" name="' . $name . '" id="' . $name . '" value="' . $value . '" class="' . $classes . '"' . $additional . ' />' . "\n";
}
// }}}
// {{{ Hidden Input
/**
* Hidden Input
*
@ -75,6 +83,9 @@ class Form extends Object
return $this->input($name, $value, $classes, $additional, 'hidden');
}
// }}}
// {{{ Password Input
/**
* Password Input
*
@ -91,6 +102,9 @@ class Form extends Object
return $this->input($name, $value, $classes, $additional, 'password');
}
// }}}
// {{{ Security Input
/**
* Security Input
*
@ -107,6 +121,9 @@ class Form extends Object
return $this->hiddenInput('security_hash', Security::generateHash($value));
}
// }}}
// {{{ Text Area
/**
* Text Area
*
@ -129,6 +146,9 @@ class Form extends Object
return '<textarea name="' . $name . '" id="' . $name . '" class="' . $classes . '"' . $additional . '>' . $value . '</textarea>' . "\n";
}
// }}}
// {{{ Select
/**
* Select
*
@ -151,6 +171,9 @@ class Form extends Object
return '<select id="' . $name . '" name="' . $name . '" class="' . $classes . '"' . $additional . '>' . $this->options($options, $selected) . '</select>' . "\n";
}
// }}}
// {{{ Options
/**
* Options
*
@ -215,6 +238,9 @@ class Form extends Object
return $options_html;
}
// }}}
// {{{ State Select
/**
* State Select
*
@ -300,6 +326,9 @@ class Form extends Object
return $this->select($name, $options, $selected, $classes, $additional);
}
// }}}
// {{{ Date Select
/**
* Date Select
*
@ -375,6 +404,9 @@ class Form extends Object
return $html;
}
// }}}
// {{{ Date of Birth Select
/**
* Date of Birth Select
*
@ -393,6 +425,9 @@ class Form extends Object
return $this->dateSelect($name, $selected, $classes, $additional, date('Y'), 1896);
}
// }}}
// {{{ Polar Select
/**
* Polar Select
*
@ -410,6 +445,9 @@ class Form extends Object
return $this->select($name, $options, $selected, $classes, $additional);
}
// }}}
// {{{ Phone Input
/**
* Phone Input
*
@ -459,6 +497,8 @@ class Form extends Object
return $html . "\n";
}
// }}}
}
?>