WP-Forms-API | Drupal-esque API for creating and munging forms in WordPress
kandi X-RAY | WP-Forms-API Summary
kandi X-RAY | WP-Forms-API Summary
WP-Forms-API is a PHP library. WP-Forms-API has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.
There are two basic elements:. 'form', which is any associative array. 'element', a form that has at least #type and #key keys.
There are two basic elements:. 'form', which is any associative array. 'element', a form that has at least #type and #key keys.
Support
Quality
Security
License
Reuse
Support
WP-Forms-API has a low active ecosystem.
It has 56 star(s) with 10 fork(s). There are 15 watchers for this library.
It had no major release in the last 12 months.
There are 13 open issues and 2 have been closed. On average issues are closed in 0 days. There are 2 open pull requests and 0 closed requests.
It has a neutral sentiment in the developer community.
The latest version of WP-Forms-API is v1.3
Quality
WP-Forms-API has 0 bugs and 0 code smells.
Security
WP-Forms-API has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
WP-Forms-API code analysis shows 0 unresolved vulnerabilities.
There are 0 security hotspots that need review.
License
WP-Forms-API is licensed under the MIT License. This license is Permissive.
Permissive licenses have the least restrictions, and you can use them in most projects.
Reuse
WP-Forms-API releases are available to install and integrate.
Installation instructions, examples and code snippets are available.
It has 712 lines of code, 16 functions and 7 files.
It has high code complexity. Code complexity directly impacts maintainability of the code.
Top functions reviewed by kandi - BETA
kandi has reviewed WP-Forms-API and discovered the below as its top functions. This is intended to give you an instant insight into WP-Forms-API implemented functionality, and help decide if they suit your requirements.
- Render a form element .
- Render a single element .
- Process a single element
- Render a form .
- Render the options .
- Search for posts
- Search terms .
- Get form elements
- Make an HTML tag .
- Process form .
Get all kandi verified functions for this library.
WP-Forms-API Key Features
No Key Features are available at this moment for WP-Forms-API.
WP-Forms-API Examples and Code Snippets
Copy
/**
* Define a form called 'my-form' which contains an address1 and address2
* input, and another form called 'citystatezip' which contains three input
* elements: city, state, zipcode
*/
$form = array(
'#id' => 'my-form',
'address1' =>
Copy
array(
'#type' => 'text',
'#label' => "Enter your name:",
'#placeholder' => "Charlie Brown"
),
'zipcode' => array(
'#type' => 'text',
'#label' => "Enter your ZIP code:",
'#placeholder' => "90210",
'#siz
Copy
$form = array(
'address' => array(
'#type' => 'composite',
'city' => array( '#type' => 'text', '#label' => "City" ),
'state' => array( '#type' => 'text', '#label' => "State" ),
'zip' => array( '#type' =>
Community Discussions
No Community Discussions are available at this moment for WP-Forms-API.Refer to stack overflow page for discussions.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install WP-Forms-API
This project uses NPM to manage dependencies and gulp to build. Use npm install to install all the dependencies. Use gulp to build the CSS files.
Support
For any new features, suggestions and bugs create an issue on GitHub.
If you have any questions check and ask questions on community page Stack Overflow .
Find more information at:
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page