is_input
āļ§āļīāļāļĩāļāļēāļĢāđāļāđāļāļąāļāļāđāļāļąāļ is_input
is_inputāļāļąāļ§āļāļĒāđāļēāļāļāļēāļĢāđāļāđāļāļēāļ
$options = [ [ "type" => "text", "title" => "āļāļ·āđāļ", "name" => "username", "value" => "", "required" => true, "hint" => "āļāļĢāļļāļāļēāļāļĢāļāļāļāļ·āđāļāļāļđāđāđāļāđ" ] ]; $_PNA->is_input($options);$options = [ [ "type" => "select", "title" => "āđāļĨāļ·āļāļāđāļāļĻ", "name" => "gender", "option" => [ ["label" => "āļāļēāļĒ", "value" => "male"], ["label" => "āļŦāļāļīāļ", "value" => "female"] ], "required" => true ] ]; $_PNA->is_input($options);$options = [ [ "type" => "file", "title" => "āļāļąāļāđāļŦāļĨāļāđāļāļĨāđ", "name" => "upload_file", "accept" => "image/*", "required" => true ] ]; $_PNA->is_input($options);$options = [ [ "type" => "checkbox", "title" => "āđāļĨāļ·āļāļāļāļąāļ§āđāļĨāļ·āļāļ", "name" => "choices", "option" => [ ["label" => "āļāļąāļ§āđāļĨāļ·āļāļ 1", "value" => "option1"], ["label" => "āļāļąāļ§āđāļĨāļ·āļāļ 2", "value" => "option2"] ] ] ]; $_PNA->is_input($options);
Last updated