Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save feliciaceballos/63e288a13f9dd2e73057696b45101a30 to your computer and use it in GitHub Desktop.
Save feliciaceballos/63e288a13f9dd2e73057696b45101a30 to your computer and use it in GitHub Desktop.
Create the WPMU DEV Forminator Recent Submissions Dashboard Widget, Creating the Class
<?php
/**
* Class Forminator_Submissions_Dash_Widget.
*
*/
class Forminator_Submissions_Dash_Widget {
/**
* Class instance
*
* @var null|Forminator_Submissions_Dash_Widget
*/
private static $instance = null;
/**
* Form ID
*
* @var null|int
*/
private $id = null;
/**
* Number of submissions
*
* @var int
*/
private $limit = 5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment