Skip to content

Instantly share code, notes, and snippets.

@gaintsev
Last active February 2, 2018 15:57
Show Gist options
  • Save gaintsev/ad200dd13508d81a663915ad40d4247c to your computer and use it in GitHub Desktop.
Save gaintsev/ad200dd13508d81a663915ad40d4247c to your computer and use it in GitHub Desktop.
Cockpit Next - Create and Save Form from PHP
<?php
// Include Cockpit
require_once('admin/bootstrap.php');
// Set name for new form
$new_form = 'foo';
// Set data
$data = array(
'data' => array(
'name' => 'Jack',
'email' => '[email protected]'
)
);
// Create form
cockpit('forms:createForm', $new_form);
// Save new form entry
$request = cockpit('forms:save', $new_form, $data);
// Debug
var_dump($request);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment