File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pabloaso/public_html/wp-content/plugins/uwac-7-1610815802/adminframework/fields/test/test.php
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
/**
*
* Field: Test
*
* @since 1.0.0
* @version 1.0.0
*
*/
class CSSFramework_Option_test extends CSSFramework_Options {
	
	public function __construct( $field, $value = '', $unique = '' ) {
		parent::__construct( $field, $value, $unique );
		
		$this->enqueue_scripts();
	}
	
	public function enqueue_scripts(){
		$url = CSSF_URI . '/fields/test/';
		wp_enqueue_script( 'testfield', $url . 'js/test.js', array( ), '', false);
	}
	
	public function output() {
		
		echo $this->element_before();
		echo "ESTE ES EL ELEMENTO DE PRUEBA CTM";
		echo $this->element_after();
		
	}
	
}