diff --git a/system/form.php b/system/form.php index b596216c..79f17a71 100644 --- a/system/form.php +++ b/system/form.php @@ -71,6 +71,19 @@ public static function raw_token() return Session::get('csrf_token'); } + /** + * Create a HTML label element. + * + * @param string $name + * @param string $value + * @param array $attributes + * @return string + */ + public static function label($name, $value, $attributes = array()) + { + return ''.PHP_EOL; + } + /** * Create a HTML text input element. *