Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Graphical Improvments #58

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Calendar/Calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ function errors() {
function hooks() {
return array(
'EVENT_LAYOUT_RESOURCES' => 'resources',
'EVENT_MENU_MAIN_FRONT' => 'menu_main_front',
'EVENT_VIEW_BUG_DETAILS' => 'html_print_calendar',
'EVENT_MENU_MAIN' => 'menu_main_front',
'EVENT_VIEW_BUG_EXTRA' => 'html_print_calendar',
'EVENT_FILTER_COLUMNS' => 'column_add_in_view_all_bug_page',
'EVENT_DISPLAY_TEXT' => 'column_title_formating',
);
Expand All @@ -345,7 +345,7 @@ function menu_main_front() {
'url' => plugin_page( 'calendar_user_page' ),
'title' => plugin_lang_get( 'menu_main_front' ),
'access_level' => plugin_config_get( 'calendar_view_threshold' ),
'icon' => 'fa-random'
'icon' => 'fa-calendar'
),
);
}
Expand Down
3 changes: 2 additions & 1 deletion Calendar/core/classes/ViewIssue.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ public function __construct( $p_days_events, $p_bug_id ) {
}

protected function print_spacer_top() {
echo '';
echo '<div class="space-10">';
echo '</div>';
}

protected function print_headline() {
Expand Down
3 changes: 1 addition & 2 deletions Calendar/core/classes/ViewWeekCalendar.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ public function __construct( $p_week, $p_user, $p_is_full_time, $p_days_events,
}

protected function print_spacer_top() {
echo '<div class="space-10">';
echo '</div>';
echo '';
}

protected function print_headline() {
Expand Down
2 changes: 1 addition & 1 deletion Calendar/core/classes/WeekCalendar.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public final function print_html() {
global $g_calendar_show_menu_bottom;

echo '<div class="col-md-12 col-xs-12">';
echo '<a id="calendar_event_attachments"></a>';
$this->print_spacer_top();
echo '<a id="calendar_event_attachments"></a>';

echo '<div class="widget-box widget-color-blue2">';

Expand Down