marshallu/mu-gravityformsocram

A plugin that sends Gravity Form submissions to Ocram.

Maintainers

Package info

github.com/marshallu/mu-gravityformsocram

Type:wordpress-plugin

pkg:composer/marshallu/mu-gravityformsocram

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.1.0 2026-03-31 18:03 UTC

This package is auto-updated.

Last update: 2026-03-31 18:03:41 UTC


README

A Gravity Forms feed add-on for Marshall University's WordPress network that posts form submissions to Ocram as kanban board cards.

Requirements

  • PHP >= 8.3
  • WordPress (MU plugin)
  • Gravity Forms
  • An Ocram board with a webhook token configured

How it works

Install as a must-use plugin. For each form, go to Settings → Ocram and add a feed:

  1. Board Webhook Token — paste the token from your Ocram board settings
  2. Card Title — map a form field to use as the card title
  3. Card Description — choose between an auto-generated summary of all submitted fields, a specific field, or none
  4. New cards are placed in the "What's New" column, or the first column if that doesn't exist

Development

composer install       # install dev dependencies
composer lint          # run PHP CodeSniffer
composer format        # auto-fix coding standards
composer analyse       # run PHPStan static analysis

Ocram Webhook API

Cards are created via POST https://www.ocram.io/api/webhooks/boards/{token}/cards.

Field Required Description
title Yes Card title (truncated to 255 chars)
description No Card body — accepts HTML or plain text

See webhooks.md for the full API reference.