index.php 582 B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. Plugin Name: ai1ec little helper
  4. Plugin URI:
  5. Description: Aggiunge alcune feateure al plugin di wordpress all-in-one-event-calendar
  6. Version: 0.2
  7. Author: gin(e)
  8. Author URI: http://ginex.indivia.net
  9. License: BSD(3-clause) Licence
  10. */
  11. add_action( 'admin_print_scripts', 'ea_load_js' );
  12. function ea_load_js(){
  13. wp_register_script( 'alh_admin_js', plugins_url('js/alh_admin.js', __FILE__), array('jquery'));
  14. wp_enqueue_script('jquery');
  15. wp_enqueue_script( 'alh_admin_js' );
  16. }
  17. /*add_action( 'wp_enqueue_scripts', 'alh_load_scripts' );
  18. function alh_load_scripts($attrs){
  19. }*/