dnadesign/silverstripe-typeform

Module to provide integration with Typeform. Downloads submissions and allows them to be managed within SilverStripe.

Installs: 51

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 17

Forks: 3

Open Issues: 1

Type:silverstripe-module

dev-master 2016-04-18 02:23 UTC

This package is not auto-updated.

Last update: 2024-03-26 01:39:05 UTC


README

Maintainer Contact

Requirements

  • SilverStripe 3.1

Documentation

This module provides integration with Typeform.com and SilverStripe in a way that SilverStripe Page objects can have a linked Typeform Form and submissions made through Typeform are brought into SilverStripe to be managed through a ModelAdmin interface.

Installation

composer require "dnadesign/silverstripe-typeform"

Usage

Add the TypeformExtension extension to your formable page type. For example, in mysite/_config/extensions.yml

Page:
  extensions:
    - TypeformExtension

Rebuild the database and complete the new Typeform tab in the CMS.

To sync submissions call dev/tasks/SyncTypeformSubmissions. You can also sync individual forms (say on submission callback) by creating an action and manually invoking the SyncTypeformSubmissions_Single class

$sync = new SyncTypeformSubmissions_Single($this->TypeformKey);
$results = $sync->syncComments($this);

Features

* Imports questions, forms and submissions into SilverStripe Data Models
* Attach Typeform pages to any SilverStripe Object
* CMS Admin interface for viewing and managing Typeform data