22 lines
581 B
PHP
22 lines
581 B
PHP
|
<?php
|
||
|
/*
|
||
|
Plugin Name: ai1ec little helper
|
||
|
Plugin URI:
|
||
|
Description: Aggiunge alcune feateure al plugin di wordpress all-in-one-event-calendar
|
||
|
Version: 0.1
|
||
|
Author: gin(e)
|
||
|
Author URI: http://ginex.indivia.net
|
||
|
License: BSD(3-clause) Licence
|
||
|
*/
|
||
|
|
||
|
add_action( 'admin_print_scripts', 'ea_load_js' );
|
||
|
function ea_load_js(){
|
||
|
wp_register_script( 'alh_admin_js', plugins_url('js/alh_admin.js', __FILE__), array('jquery'));
|
||
|
wp_enqueue_script('jquery');
|
||
|
wp_enqueue_script( 'alh_admin_js' );
|
||
|
}
|
||
|
|
||
|
/*add_action( 'wp_enqueue_scripts', 'alh_load_scripts' );
|
||
|
function alh_load_scripts($attrs){
|
||
|
|
||
|
}*/
|