Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mikemix/zf2-tidy-filter
- Owner: mikemix
- License: mit
- Created: 2015-01-27T19:22:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-12T15:41:07.000Z (over 9 years ago)
- Last Synced: 2024-12-06T03:48:34.635Z (about 2 months ago)
- Language: PHP
- Size: 156 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zf2-tidy-filter
"Tidy" filter for Zend Framework 2Usage in forms
--------------Example form:
```php
add([
'name' => 'html',
'type' => 'textarea',
]);
}
public function getInputFilterSpecification()
{
return [
'html' => [
'required' => true,
'filters' => [
['name' => TidyFilter::class]
],
],
];
}
}```