Re: Using specific input format for textarea

Randy Fay <[email protected]>
Newsgroups gmane.comp.php.drupal.devel
Message-ID <CAGxQj1F2GdK6GYYbJQ2H4G5jUtO6ci1D545ZZ66uCNTbBNJ2sg@mail.gmail.com>
If you're working with D7, you'll want to use #type = text_format (see
http://api.drupal.org/api/drupal/developer--topics--forms_api_reference.html/7#text_format)
and that will give you what you want.

Otherwise, you can use check_markup() or related functions to process the
text with the format.

-Randy

On Fri, Nov 18, 2011 at 6:08 PM, Pooya <[email protected]> wrote:

> Anyone know how to use a specific input format for a textarea in form api?
> There's no property for this option.
>
> // This is my form element:
> $form['easyco_custom']['easyco_custom_query'] = array(
> '#type' => 'textarea',
> '#title' => t(My Query'),
> '#size' => 1000,
> '#maxlength' => 1000,
> '#prefix' => '',
> '#suffix' => '',
> );
>
> I've created a new input_format using admin/settings/filters and I need to
> use it here. It's a SQL syntax highlighter(it's not about executing this
> sql, so no injection)
>
> Thanks in advanced
>
>
>


-- 
Randy Fay
Drupal Module and Site Development
[email protected]
+1  970.462.7450
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.