/
home
/
techb158
/
l2hypotheques.com
/
wp-content
/
plugins
/
codestar-framework
/
fields
/
notice
/
/home/techb158/l2hypotheques.com/wp-content/plugins/codestar-framework/fields/notice
mkdir
upload
Name
Size
Mode
Actions
notice.php
700
0644
edit
dl
rm
Edit:
/home/techb158/l2hypotheques.com/wp-content/plugins/codestar-framework/fields/notice/notice.php
(700B)
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly. /** * * Field: notice * * @since 1.0.0 * @version 1.0.0 * */ if ( ! class_exists( 'CSF_Field_notice' ) ) { class CSF_Field_notice extends CSF_Fields { public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) { parent::__construct( $field, $value, $unique, $where, $parent ); } public function render() { $style = ( ! empty( $this->field['style'] ) ) ? $this->field['style'] : 'normal'; echo ( ! empty( $this->field['content'] ) ) ? '<div class="csf-notice csf-notice-'. esc_attr( $style ) .'">'. $this->field['content'] .'</div>' : ''; } } }
Save
cmd:
run