forked from gravitywiz/snippet-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use this when creating new snippets or converting existing snippets into a class-based snippet.
- Loading branch information
Showing
1 changed file
with
157 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
<?php | ||
/** | ||
* Gravity Wiz // Gravity Forms // Snippet Name | ||
* | ||
* A brief description about this snippet and the functionality it provides. Might also include basic usage instructions if applicable. | ||
* | ||
* @version 0.1 | ||
* @author David Smith <[email protected]> | ||
* @license GPL-2.0+ | ||
* @link http://gravitywiz.com/... | ||
* | ||
* Plugin Name: Snippet Name | ||
* Plugin URI: http://gravitywiz.com/... | ||
* Description: A brief description about this snippet and the functionality it provides. Might also include basic usage instructions if applicable. | ||
* Author: Gravity Wiz | ||
* Version: 0.1 | ||
* Author URI: http://gravitywiz.com | ||
*/ | ||
class GW_Snippet_Template { | ||
|
||
public function __construct( $args = array() ) { | ||
|
||
// set our default arguments, parse against the provided arguments, and store for use throughout the class | ||
$this->_args = wp_parse_args( $args, array( | ||
'form_id' => false, | ||
'field_id' => false, | ||
) ); | ||
|
||
// do version check in the init to make sure if GF is going to be loaded, it is already loaded | ||
add_action( 'init', array( $this, 'init' ) ); | ||
|
||
} | ||
|
||
public function init() { | ||
|
||
// carry on | ||
|
||
} | ||
|
||
public function is_applicable_form( $form ) { | ||
|
||
$form_id = isset( $form['id'] ) ? $form['id'] : $form; | ||
|
||
return empty( $this->_args['form_id'] ) || (int) $form_id === (int) $this->_args['form_id']; | ||
} | ||
|
||
} | ||
|
||
# Configuration | ||
|
||
new GW_Snippet_Template(); | ||
|
||
|
||
|
||
|
||
|
||
/** | ||
* JS-powered Snippets | ||
*/ | ||
class GW_JS_Snippet_Template { | ||
|
||
public function __construct( $args = array() ) { | ||
|
||
// set our default arguments, parse against the provided arguments, and store for use throughout the class | ||
$this->_args = wp_parse_args( $args, array( | ||
'form_id' => false, | ||
'field_id' => false, | ||
) ); | ||
|
||
// do version check in the init to make sure if GF is going to be loaded, it is already loaded | ||
add_action( 'init', array( $this, 'init' ) ); | ||
|
||
} | ||
|
||
public function init() { | ||
|
||
// time for hooks | ||
add_filter( 'gform_pre_render', array( $this, 'load_form_script' ), 10, 2 ); | ||
add_filter( 'gform_register_init_scripts', array( $this, 'add_init_script' ), 10, 2 ); | ||
|
||
} | ||
|
||
public function load_form_script( $form, $is_ajax_enabled ) { | ||
|
||
if ( $this->is_applicable_form( $form ) && ! has_action( 'wp_footer', array( $this, 'output_script' ) ) ) { | ||
add_action( 'wp_footer', array( $this, 'output_script' ) ); | ||
add_action( 'gform_preview_footer', array( $this, 'output_script' ) ); | ||
} | ||
|
||
return $form; | ||
} | ||
|
||
public function output_script() { | ||
?> | ||
|
||
<script type="text/javascript"> | ||
|
||
( function( $ ) { | ||
|
||
window.GWJSSnippetTemplate = function( args ) { | ||
|
||
var self = this; | ||
|
||
// copy all args to current object: (list expected props) | ||
for( var prop in args ) { | ||
if( args.hasOwnProperty( prop ) ) { | ||
self[ prop ] = args[ prop ]; | ||
} | ||
} | ||
|
||
self.init = function() { | ||
|
||
console.log( 'doing the magic!' ); | ||
|
||
}; | ||
|
||
self.init(); | ||
|
||
} | ||
|
||
} )( jQuery ); | ||
|
||
</script> | ||
|
||
<?php | ||
} | ||
|
||
public function add_init_script( $form ) { | ||
|
||
if ( ! $this->is_applicable_form( $form ) ) { | ||
return; | ||
} | ||
|
||
$args = array( | ||
'formId' => $this->_args['form_id'], | ||
'fieldId' => $this->_args['field_id'], | ||
); | ||
|
||
$script = 'new GWJSSnippetTemplate( ' . json_encode( $args ) . ' );'; | ||
$slug = implode( '_', array( 'gw_js_snippet_template', $this->_args['form_id'], $this->_args['field_id'] ) ); | ||
|
||
GFFormDisplay::add_init_script( $this->_args['form_id'], $slug, GFFormDisplay::ON_PAGE_RENDER, $script ); | ||
|
||
} | ||
|
||
public function is_applicable_form( $form ) { | ||
|
||
$form_id = isset( $form['id'] ) ? $form['id'] : $form; | ||
|
||
return empty( $this->_args['form_id'] ) || (int) $form_id == (int) $this->_args['form_id']; | ||
} | ||
|
||
} | ||
|
||
# Configuration | ||
|
||
new GW_JS_Snippet_Template(); |