PluginProbe ʕ •ᴥ•ʔ
Disable Admin Notices – Hide Dashboard Notifications / trunk
Disable Admin Notices – Hide Dashboard Notifications vtrunk
1.4.5 trunk 1.0.0 1.0.2 1.0.3 1.0.5 1.0.6 1.1.1 1.1.3 1.1.4 1.2.0 1.2.2 1.2.3 1.2.4 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4
disable-admin-notices / libs / factory / forms / controls / customs / separator.php
disable-admin-notices / libs / factory / forms / controls / customs Last commit date
html.php 1 year ago index.php 3 years ago separator.php 1 year ago
separator.php
36 lines
1 <?php
2 /**
3 * Separator Markup
4 *
5 * @author Alex Kovalev <alex.kovalevv@gmail.com>
6 * @copyright (c) 2018, Webcraftic Ltd
7 *
8 * @package factory-forms
9 * @since 1.0.0
10 */
11
12 // Exit if accessed directly
13 if( !defined('ABSPATH') ) {
14 exit;
15 }
16
17 if( !class_exists('Wbcr_FactoryForms480_Separator') ) {
18 class Wbcr_FactoryForms480_Separator extends Wbcr_FactoryForms480_CustomElement {
19
20 public $type = 'separator';
21
22 /**
23 * Shows the html markup of the element.
24 *
25 * @since 1.0.0
26 * @return void
27 */
28 public function html()
29 {
30 ?>
31 <div <?php $this->attrs() ?>></div>
32 <?php
33 }
34 }
35 }
36