Viewing File: /home/maglabs/lacentraleit/wp-content/themes/mlab/inc/options/fields/icons.php

<?php
defined( 'ABSPATH' ) or die();


/**
 * This class will be present an social icons control
 */
class MLab_Options_Icons extends MLab_Options_Control
{
	/**
	 * The control type
	 * 
	 * @var  string
	 */
	public $type = 'icons';
	public $default = array();

	public function render_content() {
		?>
			<div class="options-control-inputs">
				<icons v-bind:value="data" v-bind:icons="_mlabicons" v-on:change="triggerChange"></icons>
			</div>
		<?php
	}
}
Back to Directory File Manager