Changeset 556705
- Timestamp:
- 06/12/2012 02:16:34 PM (14 years ago)
- Location:
- indypress-events/trunk
- Files:
-
- 17 added
- 3 edited
-
indypress_event.php (modified) (3 diffs)
-
indypress_event/classes/settings.php (modified) (2 diffs)
-
indypress_event/css (added)
-
indypress_event/css/smoothness (added)
-
indypress_event/css/smoothness/images (added)
-
indypress_event/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png (added)
-
indypress_event/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png (added)
-
indypress_event/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png (added)
-
indypress_event/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png (added)
-
indypress_event/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png (added)
-
indypress_event/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png (added)
-
indypress_event/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png (added)
-
indypress_event/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png (added)
-
indypress_event/css/smoothness/images/ui-icons_222222_256x240.png (added)
-
indypress_event/css/smoothness/images/ui-icons_2e83ff_256x240.png (added)
-
indypress_event/css/smoothness/images/ui-icons_454545_256x240.png (added)
-
indypress_event/css/smoothness/images/ui-icons_888888_256x240.png (added)
-
indypress_event/css/smoothness/images/ui-icons_cd0a0a_256x240.png (added)
-
indypress_event/css/smoothness/jquery-ui-1.8.16.custom.css (added)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
indypress-events/trunk/indypress_event.php
r556693 r556705 6 6 Description: Manage events post_type with lot of utilities 7 7 Author: boyska, paskao 8 Version: 0.2 8 Version: 0.2.1 9 9 Author URI: 10 10 License: GPL2 … … 30 30 // ADMIN PANEL MENU 31 31 if( is_admin() ) { 32 require_once( $indypressevent_path . 'widget/event.php' );32 include_once( $indypressevent_path . 'widget/event.php' ); 33 33 add_action( 'widgets_init', 'load_next_event_widget' ); 34 include_once( $indypressevent_path . 'widget/event-calendar.php' ); 35 add_action( 'widgets_init', 'load_event_calendar_widget' ); 34 36 35 37 // LOAD EVENT POST TYPE … … 55 57 $indypressevent = new indypressevent(); 56 58 57 require_once( $indypressevent_path . 'widget/event.php' );59 include_once( $indypressevent_path . 'widget/event.php' ); 58 60 add_action( 'widgets_init', 'load_next_event_widget' ); 61 include_once( $indypressevent_path . 'widget/event-calendar.php' ); 62 add_action( 'widgets_init', 'load_event_calendar_widget' ); 59 63 60 64 //LOAD EVENTS PAGE -
indypress-events/trunk/indypress_event/classes/settings.php
r499231 r556705 51 51 //Indypress->admin page 52 52 register_setting( 'indypress_admin', 'indypressevent_add_new_event' ); 53 add_settings_field( 'indypressevent_add_new_event', __('Add event to administration interface (allow to hide link but keep it still working)', 'indypress'), array( $this, 'setting_add_new_event' ), 'indypress_admin_settings', 'indypress_admin_main' ); 53 add_settings_field( 'indypressevent_add_new_event', 54 __('Add event to administration interface (allow to hide link but keep it still working)', 'indypress'), 55 array( $this, 'setting_add_new_event' ), 56 'indypress_admin_settings', 57 'indypress_admin_main' ); 54 58 55 59 //Indypress->visualization page … … 58 62 add_settings_field( 'indypressevent_info_top', __('Add information to event (It works whitout theme configuration, must be disabled if you want to configure your theme manually)', 'indypress'), array( $this, 'settings_event_info_top' ), 'indypress_visualization_settings', 'indypress_visualization_event' ); 59 63 register_setting( 'indypress_visualization', 'indypressevent_permalink' ); 60 add_settings_field( 'indypressevent_permalink', __('Permalink for indypressevent objects. Example: <code>event/%post_id%</code> or <code>event</code>', 'indypress'), array( $this, 'settings_event_permalink' ), 'indypress_visualization_settings', 'indypress_visualization_event' ); 64 add_settings_field( 'indypressevent_permalink', 65 __('Permalink for indypressevent objects. Example: <code>event/%post_id%</code> or <code>event</code>', 'indypress'), 66 array( $this, 'settings_event_permalink' ), 67 'indypress_visualization_settings', 68 'indypress_visualization_event' ); 61 69 } 62 70 function menu() { -
indypress-events/trunk/readme.txt
r556695 r556705 31 31 == Changelog == 32 32 33 = 0.2.1 = 34 * fix 0.2, it was not really adding anything 35 33 36 = 0.2 = 34 37 * add event calendar widget: the typical 7 columns x 4 rows widget, with jQuery bounties included
Note: See TracChangeset
for help on using the changeset viewer.