Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mikemix/zf2-tidy-filter

TIDY filter for Zend Framework 2
https://github.com/mikemix/zf2-tidy-filter

Last synced: about 1 month ago
JSON representation

TIDY filter for Zend Framework 2

Awesome Lists containing this project

README

        

# zf2-tidy-filter
"Tidy" filter for Zend Framework 2

Usage in forms
--------------

Example form:

```php
add([
'name' => 'html',
'type' => 'textarea',
]);
}

public function getInputFilterSpecification()
{
return [
'html' => [
'required' => true,
'filters' => [
['name' => TidyFilter::class]
],
],
];
}
}

```