This file contains hidden or 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
class SiteOrigin_Panels_Widgets_Gallery extends WP_Widget { | |
function __construct() { | |
parent::__construct( | |
'siteorigin-panels-gallery', | |
__( 'Gallery (PB)', 'so-panels' ), | |
array( | |
'description' => __( 'Displays a gallery.', 'so-panels' ), | |
) | |
); | |
} |
This file contains hidden or 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
<?php | |
// Turn off error reporting | |
error_reporting(0); | |
try | |
{ | |
// Decode the payload json string | |
$payload = json_decode($_REQUEST['payload']); | |
} |
NewerOlder