waynestate / formy-parser
Parses a string for formy elements and converts the string to an HTML form
Installs: 23 651
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- php: >=5.5.0
- waynestate/string-middleware: ~1.1.1
Requires (Dev)
- phpunit/phpunit: ~4.5
This package is auto-updated.
Last update: 2024-11-22 01:55:40 UTC
README
Parses a string for formy elements and converts the string to an HTML form Edit Add topics
Installation
composer require waynestate/formy-parser
Usage
<?php
use Waynestate\FormyParser\Parser;
use Waynestate\ParserMiddleware\ParserMiddleware;
// Composer autoload
require __DIR__ . '/../vendor/autoload.php';
// Create the instance of the Parser Middleware
$parser = new ParserMiddleware;
// Set the stack of parsers to run
$parser->setStack([
'Waynestate\FormyParser\Parser'
]);
// Original String we want to parse
$string = '<p>Content before embed.</p><p>[form id="undergrad"]</p><p>Content after embed.</p>';
// Generate the html form
$html_form = $parser->parse($string);
// Display the form with content surrounding it
echo $html_form;
Tests
phpunit
Code Coverage
phpunit --coverage-html ./coverage