Server IP : 172.67.214.6 / Your IP : 216.73.216.73 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/fyntric.com/wp-content/plugins/smartmag-core/blocks/loops/large/ |
Upload File : |
<?php namespace Bunyad\Blocks\Loops; use Bunyad\Blocks\Base\LoopOptions; /** * Large Block Options */ class Large_Options extends Grid_Options { public $block_id = 'Large'; /** * @inheritDoc */ public function init($type = '') { parent::init($type); // Block name to be used by page builders $this->block_name = esc_html__('Large Block', 'bunyad-admin'); $this->elementor_conf = [ 'title' => $this->block_name, 'icon' => 'ts-ele-icon ts-ele-icon-large', 'categories' => ['smart-mag-blocks'], ]; // // Setup and extend options // $this->options = array_replace_recursive($this->options, [ // ]); $this->_add_defaults(); } }