PluginProbe ʕ •ᴥ•ʔ
Robin Image Optimizer – Unlimited Image Optimization, WebP & AVIF / trunk
Robin Image Optimizer – Unlimited Image Optimization, WebP & AVIF vtrunk
2.0.5 trunk 1.3.7 1.4.0 1.4.1 1.4.2 1.4.6 1.5.0 1.5.3 1.5.6 1.5.8 1.6.5 1.6.6 1.6.9 1.7.0 1.7.4 1.8.1 1.8.2 1.9.0 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4
robin-image-optimizer / libs / factory / forms / controls / customs / separator.php
robin-image-optimizer / libs / factory / forms / controls / customs Last commit date
html.php 5 months ago index.php 6 months ago separator.php 5 months ago
separator.php
32 lines
1 <?php
2 /**
3 * Separator Markup
4 *
5 * @package factory-forms
6 * @since 1.0.0
7 */
8
9 // Exit if accessed directly
10 if ( ! defined( 'ABSPATH' ) ) {
11 exit;
12 }
13
14 if ( ! class_exists( 'Wbcr_FactoryForms600_Separator' ) ) {
15 class Wbcr_FactoryForms600_Separator extends Wbcr_FactoryForms600_CustomElement {
16
17 public $type = 'separator';
18
19 /**
20 * Shows the html markup of the element.
21 *
22 * @since 1.0.0
23 * @return void
24 */
25 public function html() {
26 ?>
27 <div <?php $this->attrs(); ?>></div>
28 <?php
29 }
30 }
31 }
32