gine
7de8d6305a
- Luogo e via dell'evento di default inserito in automatico - Utilizzo esclusivo delle categorie "repeat-event" e "one-time-event" in base al checkbox "Repeat" nel form
22 lines
No EOL
581 B
PHP
22 lines
No EOL
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){
|
|
|
|
}*/ |