for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Shortcode to handle showing/hiding content in merge tags. Works great with GravityView Custom Content fields
*
* @deprecated
* @since develop
* @see \GV\Shortcodes\gvlogic
*/
class GVLogic_Shortcode {
public static $instance = null;
public static function get_instance() {
if ( is_null( self::$instance ) ) {
return self::$instance = new self(); // Nothing
GVLogic_Shortcode
This class, trait or interface has been deprecated.
}
return self::$instance;
public function shortcode( $atts, $content = '', $tag = '') {
$shortcode = new \GV\Shortcodes\gvlogic();
return $shortcode->callback( $atts, $content, $tag );
This class, trait or interface has been deprecated.