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/themes/smart-mag/blocks/loops/highlights/ |
Upload File : |
<?php namespace Bunyad\Blocks\Loops; use \Bunyad; use Bunyad\Blocks\Base\LoopBlock; /** * Highlights Block */ class Highlights extends LoopBlock { public $id = 'highlights'; /** * Extend base props */ public static function get_default_props() { $props = parent::get_default_props(); return array_replace($props, [ 'small_style' => 'a' ]); } public function get_block_wrap_attribs() { $attribs = parent::get_block_wrap_attribs(); $attribs['data-is-mixed'] = 1; return $attribs; } /** * @inheritDoc */ public function _pre_render() { // Auto-detect columns. if (!$this->props['columns']) { $this->props['columns'] = $this->get_relative_width() >= 66 ? 2 : 1; } } /** * @inheritDoc */ public function infer_image_sizes() { } }