Server IP : 172.67.214.6 / Your IP : 216.73.216.84 Web Server : LiteSpeed System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : redwjova ( 1790) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/redwjova/clevorio.com/wp-content/plugins/smartmag-core/inc/widgets/ |
Upload File : |
<?php /** * All the widgets to be used as blocks */ namespace Bunyad\Widgets\Loops { use Bunyad\Widgets\BlockWidget; if (!function_exists('esc_html')) { return; } class Grid_Block extends BlockWidget { public $conf = [ 'title' => 'SmartMag Block - Grid', ]; } // class Large_Block extends BlockWidget { // public $conf = [ // 'title' => 'SmartMag Block - Large', // ]; // } class Overlay_Block extends BlockWidget { public $conf = [ 'title' => 'SmartMag Block - Overlay', ]; } // class FocusGrid_Block extends BlockWidget { // public $conf = [ // 'title' => 'SmartMag Block - Focus Grid', // ]; // } // class NewsFocus_Block extends BlockWidget { // public $conf = [ // 'title' => 'SmartMag Block - News Focus', // ]; // } class Highlights_Block extends BlockWidget { public $conf = [ 'title' => 'SmartMag Block - Highlights', ]; } // class PostsList_Block extends BlockWidget { // public $conf = [ // 'title' => 'SmartMag Block - List', // ]; // } class PostsSmall_Block extends BlockWidget { public $conf = [ 'title' => 'SmartMag - Latest Posts', 'description' => 'Widget to show latest posts. Uses Small Posts block.', ]; } // class PostsGallery_Block extends BlockWidget { // public $conf = [ // 'title' => 'SmartMag - Posts Gallery', // ]; // } } namespace Bunyad\Widgets { class Newsletter_Block extends BlockWidget { public $conf = [ 'title' => 'SmartMag - Newsletter', 'description' => 'Newsletter subscribe widget.', ]; } class Codes_Block extends BlockWidget { public $conf = [ 'title' => 'SmartMag - Ads / Code', 'description' => 'Advertisements or codes widget.', ]; } }