Index: branches/5.1.x/core/admin_templates/regional/email_messages_edit.tpl
===================================================================
diff -u -r13949 -r14155
--- branches/5.1.x/core/admin_templates/regional/email_messages_edit.tpl (.../email_messages_edit.tpl) (revision 13949)
+++ branches/5.1.x/core/admin_templates/regional/email_messages_edit.tpl (.../email_messages_edit.tpl) (revision 14155)
@@ -20,8 +20,32 @@
}
) );
+ a_toolbar.AddButton( new ToolBarSeparator('sep1') );
+
+ a_toolbar.AddButton( new ToolBarButton('prev', '', function() {
+ go_to_id('emailevents', '');
+ }
+ ));
+
+ a_toolbar.AddButton( new ToolBarButton('next', '', function() {
+ go_to_id('emailevents', '');
+ }
+ ));
+
a_toolbar.Render();
-
+
+
+ a_toolbar.HideButton('prev');
+ a_toolbar.HideButton('next');
+ a_toolbar.HideButton('sep1');
+
+
+ a_toolbar.DisableButton('next');
+
+
+ a_toolbar.DisableButton('prev');
+
+
Index: branches/5.1.x/core/admin_templates/categories/related_searches_edit.tpl
===================================================================
diff -u -r13949 -r14155
--- branches/5.1.x/core/admin_templates/categories/related_searches_edit.tpl (.../related_searches_edit.tpl) (revision 13949)
+++ branches/5.1.x/core/admin_templates/categories/related_searches_edit.tpl (.../related_searches_edit.tpl) (revision 14155)
@@ -17,7 +17,32 @@
}
) );
+ a_toolbar.AddButton( new ToolBarSeparator('sep1') );
+
+ a_toolbar.AddButton( new ToolBarButton('prev', '', function() {
+ go_to_id('c-search', '');
+ }
+ ));
+
+ a_toolbar.AddButton( new ToolBarButton('next', '', function() {
+ go_to_id('c-search', '');
+ }
+ ));
+
a_toolbar.Render();
+
+
+ a_toolbar.HideButton('prev');
+ a_toolbar.HideButton('next');
+ a_toolbar.HideButton('sep1');
+
+
+ a_toolbar.DisableButton('next');
+
+
+ a_toolbar.DisableButton('prev');
+
+
Index: branches/5.1.x/core/admin_templates/users/user_edit_group.tpl
===================================================================
diff -u -r12127 -r14155
--- branches/5.1.x/core/admin_templates/users/user_edit_group.tpl (.../user_edit_group.tpl) (revision 12127)
+++ branches/5.1.x/core/admin_templates/users/user_edit_group.tpl (.../user_edit_group.tpl) (revision 14155)
@@ -17,7 +17,32 @@
}
) );
+ a_toolbar.AddButton( new ToolBarSeparator('sep1') );
+
+ a_toolbar.AddButton( new ToolBarButton('prev', '', function() {
+ go_to_id('u-ug', '');
+ }
+ ));
+
+ a_toolbar.AddButton( new ToolBarButton('next', '', function() {
+ go_to_id('u-ug', '');
+ }
+ ));
+
a_toolbar.Render();
+
+
+ a_toolbar.HideButton('prev');
+ a_toolbar.HideButton('next');
+ a_toolbar.HideButton('sep1');
+
+
+ a_toolbar.DisableButton('next');
+
+
+ a_toolbar.DisableButton('prev');
+
+
Index: branches/5.1.x/core/admin_templates/themes/themes_edit_files.tpl
===================================================================
diff -u -r12657 -r14155
--- branches/5.1.x/core/admin_templates/themes/themes_edit_files.tpl (.../themes_edit_files.tpl) (revision 12657)
+++ branches/5.1.x/core/admin_templates/themes/themes_edit_files.tpl (.../themes_edit_files.tpl) (revision 14155)
@@ -39,6 +39,7 @@
a_toolbar.AddButton( new ToolBarSeparator('sep2') );
a_toolbar.AddButton( new ToolBarButton('edit', '', edit) );
+
a_toolbar.AddButton( new ToolBarButton('delete', '',
function() {
std_delete_items('theme-file')
Index: branches/5.1.x/core/units/forms/forms/forms_config.php
===================================================================
diff -u -r13824 -r14155
--- branches/5.1.x/core/units/forms/forms/forms_config.php (.../forms_config.php) (revision 13824)
+++ branches/5.1.x/core/units/forms/forms/forms_config.php (.../forms_config.php) (revision 14155)
@@ -1,6 +1,6 @@
Array('formflds'=>'!la_title_Editing_FormField!'),
'new_titlefield' => Array('formflds'=>''),
'format' => "#form_status# '#form_titlefield#' - #formflds_status# '#formflds_titlefield#'",
- 'toolbar_buttons' => Array('select', 'cancel'),
+ 'toolbar_buttons' => Array('select', 'cancel', 'prev', 'next'),
),
'tree_submissions' => Array (
Index: branches/5.1.x/core/units/themes/themes_config.php
===================================================================
diff -u -r13941 -r14155
--- branches/5.1.x/core/units/themes/themes_config.php (.../themes_config.php) (revision 13941)
+++ branches/5.1.x/core/units/themes/themes_config.php (.../themes_config.php) (revision 14155)
@@ -1,6 +1,6 @@
Array(
'prefixes' => Array('theme', 'theme-file_List'), 'format' => "#theme_status# '#theme_titlefield#' - !la_title_ThemeFiles!",
- 'toolbar_buttons' => Array('select', 'cancel', 'prev', 'next', 'view', 'dbl-click'),
+ 'toolbar_buttons' => Array('select', 'cancel', 'prev', 'next', 'edit', 'delete', 'view', 'dbl-click'),
),
'theme_file_edit' => Array (
@@ -77,7 +77,7 @@
'edit_status_labels' => Array ('theme-file' => '!la_title_EditingThemeFile!'),
'new_titlefield' => Array ('theme-file' => '!la_title_NewThemeFile!'),
'format' => "#theme_status# '#theme_titlefield#' - #theme-file_status# '#theme-file_titlefield#'",
- 'toolbar_buttons' => Array('select', 'cancel', 'reset_edit'),
+ 'toolbar_buttons' => Array('select', 'cancel', 'reset_edit', 'prev', 'next'),
),
'block_edit' => Array('prefixes' => Array('theme-file'), 'format' => "!la_title_EditingThemeFile! '#theme-file_titlefield#'"),
Index: branches/5.1.x/core/units/categories/categories_config.php
===================================================================
diff -u -r13962 -r14155
--- branches/5.1.x/core/units/categories/categories_config.php (.../categories_config.php) (revision 13962)
+++ branches/5.1.x/core/units/categories/categories_config.php (.../categories_config.php) (revision 14155)
@@ -1,6 +1,6 @@
Array ('c-img' => '!la_title_Editing_Image!'),
'new_titlefield' => Array ('c-img' => ''),
'format' => "#c_status# '#c_titlefield#' - #c-img_status# '#c-img_titlefield#'",
- 'toolbar_buttons' => Array ('select', 'cancel'),
+ 'toolbar_buttons' => Array ('select', 'cancel', 'prev', 'next'),
),
'relations_edit' => Array (
'prefixes' => Array ('c', 'c-rel'),
'new_status_labels' => Array ('c-rel' => "!la_title_Adding_Relationship! '!la_title_New_Relationship!'"),
'edit_status_labels' => Array ('c-rel' => '!la_title_Editing_Relationship!'),
'format' => "#c_status# '#c_titlefield#' - #c-rel_status#",
- 'toolbar_buttons' => Array ('select', 'cancel'),
+ 'toolbar_buttons' => Array ('select', 'cancel', 'prev', 'next'),
),
'related_searches_edit' => Array (
'prefixes' => Array ('c', 'c-search'),
'new_status_labels' => Array ('c-search' => "!la_title_Adding_RelatedSearch_Keyword!"),
'edit_status_labels' => Array ('c-search' => '!la_title_Editing_RelatedSearch_Keyword!'),
'format' => "#c_status# '#c_titlefield#' - #c-search_status#",
- 'toolbar_buttons' => Array ('select', 'cancel'),
+ 'toolbar_buttons' => Array ('select', 'cancel', 'prev', 'next'),
),
'edit_content' => Array ('format' => '!la_EditingContent!'),
Index: branches/5.1.x/core/admin_templates/users/image_edit.tpl
===================================================================
diff -u -r13949 -r14155
--- branches/5.1.x/core/admin_templates/users/image_edit.tpl (.../image_edit.tpl) (revision 13949)
+++ branches/5.1.x/core/admin_templates/users/image_edit.tpl (.../image_edit.tpl) (revision 14155)
@@ -19,7 +19,32 @@
}
) );
+ a_toolbar.AddButton( new ToolBarSeparator('sep1') );
+
+ a_toolbar.AddButton( new ToolBarButton('prev', '', function() {
+ go_to_id('u-img', '');
+ }
+ ));
+
+ a_toolbar.AddButton( new ToolBarButton('next', '', function() {
+ go_to_id('u-img', '');
+ }
+ ));
+
a_toolbar.Render();
+
+
+ a_toolbar.HideButton('prev');
+ a_toolbar.HideButton('next');
+ a_toolbar.HideButton('sep1');
+
+
+ a_toolbar.DisableButton('next');
+
+
+ a_toolbar.DisableButton('prev');
+
+
Index: branches/5.1.x/admin/system_presets/simple/languages_lang.php
===================================================================
diff -u -r12657 -r14155
--- branches/5.1.x/admin/system_presets/simple/languages_lang.php (.../languages_lang.php) (revision 12657)
+++ branches/5.1.x/admin/system_presets/simple/languages_lang.php (.../languages_lang.php) (revision 14155)
@@ -15,6 +15,7 @@
// toolbar buttons
$remove_buttons = Array (
// 'languages_list' => Array ('new_item', 'edit', 'delete', 'export', 'import', 'setprimary', 'refresh', 'view', 'dbl-click'),
+// 'email_messages_edit' => Array ('select', 'cancel', 'prev', 'next'),
);
Index: branches/5.1.x/admin/system_presets/simple/themes_theme.php
===================================================================
diff -u -r12657 -r14155
--- branches/5.1.x/admin/system_presets/simple/themes_theme.php (.../themes_theme.php) (revision 12657)
+++ branches/5.1.x/admin/system_presets/simple/themes_theme.php (.../themes_theme.php) (revision 14155)
@@ -24,7 +24,7 @@
// 'themes_edit_files' => Array ('select', 'cancel', 'prev', 'next', 'delete', 'view', 'dbl-click'),
// "Edit File"
-// 'theme_file_edit' => Array ('select', 'cancel', 'reset_edit'),
+// 'theme_file_edit' => Array ('select', 'cancel', 'reset_edit', 'prev', 'next'),
);
// fields to hide
Index: branches/5.1.x/admin/system_presets/simple/forms_form.php
===================================================================
diff -u -r12657 -r14155
--- branches/5.1.x/admin/system_presets/simple/forms_form.php (.../forms_form.php) (revision 12657)
+++ branches/5.1.x/admin/system_presets/simple/forms_form.php (.../forms_form.php) (revision 14155)
@@ -24,7 +24,7 @@
// 'forms_edit_fields' => Array ('select', 'cancel', 'prev', 'next', 'new_item', 'edit', 'delete', 'move_up', 'move_down', 'view', 'dbl-click'),
// edit form field when adding/editing form
-// 'form_field_edit' => Array ('select', 'cancel'),
+// 'form_field_edit' => Array ('select', 'cancel', 'prev', 'next'),
);
// fields to hide
Index: branches/5.1.x/core/units/languages/languages_config.php
===================================================================
diff -u -r14124 -r14155
--- branches/5.1.x/core/units/languages/languages_config.php (.../languages_config.php) (revision 14124)
+++ branches/5.1.x/core/units/languages/languages_config.php (.../languages_config.php) (revision 14155)
@@ -1,6 +1,6 @@
Array (
'prefixes' => Array ('lang', 'emailevents'),
'format' => "#lang_status# '#lang_titlefield#' - !la_title_EditingEmailEvent! '#emailevents_titlefield#'",
+ 'toolbar_buttons' => Array ('select', 'cancel', 'prev', 'next'),
),
// for separate language list
'languages_list_st' => Array (
Index: branches/5.1.x/core/admin_templates/categories/relations_edit.tpl
===================================================================
diff -u -r13949 -r14155
--- branches/5.1.x/core/admin_templates/categories/relations_edit.tpl (.../relations_edit.tpl) (revision 13949)
+++ branches/5.1.x/core/admin_templates/categories/relations_edit.tpl (.../relations_edit.tpl) (revision 14155)
@@ -17,15 +17,24 @@
}
) );
- a_toolbar.AddButton( new ToolBarSeparator('sep2') );
+ a_toolbar.AddButton( new ToolBarSeparator('sep1') );
+ a_toolbar.AddButton( new ToolBarButton('prev', '', function() {
+ go_to_id('c-rel', '');
+ }
+ ));
+
+ a_toolbar.AddButton( new ToolBarButton('next', '', function() {
+ go_to_id('c-rel', '');
+ }
+ ));
+
a_toolbar.Render();
a_toolbar.HideButton('prev');
a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- a_toolbar.HideButton('sep2');
+ a_toolbar.HideButton('sep1');
a_toolbar.DisableButton('next');
Index: branches/5.1.x/admin/system_presets/simple/users_u.php
===================================================================
diff -u -r13545 -r14155
--- branches/5.1.x/admin/system_presets/simple/users_u.php (.../users_u.php) (revision 13545)
+++ branches/5.1.x/admin/system_presets/simple/users_u.php (.../users_u.php) (revision 14155)
@@ -57,7 +57,7 @@
// 'user_edit_group' => Array ('select', 'cancel'),
// user image adding/editing (used on "Images" tab during user adding/editing)
-// 'user_image_edit' => Array ('select', 'cancel'),
+// 'user_image_edit' => Array ('select', 'cancel', 'prev', 'next'),
// user selector
// 'user_select' => Array ('select', 'cancel', 'view', 'dbl-click'),
Index: branches/5.1.x/core/admin_templates/categories/images_edit.tpl
===================================================================
diff -u -r13949 -r14155
--- branches/5.1.x/core/admin_templates/categories/images_edit.tpl (.../images_edit.tpl) (revision 13949)
+++ branches/5.1.x/core/admin_templates/categories/images_edit.tpl (.../images_edit.tpl) (revision 14155)
@@ -20,7 +20,32 @@
}
) );
+ a_toolbar.AddButton( new ToolBarSeparator('sep1') );
+
+ a_toolbar.AddButton( new ToolBarButton('prev', '', function() {
+ go_to_id('c-img', '');
+ }
+ ));
+
+ a_toolbar.AddButton( new ToolBarButton('next', '', function() {
+ go_to_id('c-img', '');
+ }
+ ));
+
a_toolbar.Render();
+
+
+ a_toolbar.HideButton('prev');
+ a_toolbar.HideButton('next');
+ a_toolbar.HideButton('sep1');
+
+
+ a_toolbar.DisableButton('next');
+
+
+ a_toolbar.DisableButton('prev');
+
+
Index: branches/5.1.x/core/admin_templates/forms/form_field_edit.tpl
===================================================================
diff -u -r13949 -r14155
--- branches/5.1.x/core/admin_templates/forms/form_field_edit.tpl (.../form_field_edit.tpl) (revision 13949)
+++ branches/5.1.x/core/admin_templates/forms/form_field_edit.tpl (.../form_field_edit.tpl) (revision 14155)
@@ -19,7 +19,32 @@
}
) );
+ a_toolbar.AddButton( new ToolBarSeparator('sep1') );
+
+ a_toolbar.AddButton( new ToolBarButton('prev', '', function() {
+ go_to_id('formflds', '');
+ }
+ ));
+
+ a_toolbar.AddButton( new ToolBarButton('next', '', function() {
+ go_to_id('formflds', '');
+ }
+ ));
+
a_toolbar.Render();
+
+
+ a_toolbar.HideButton('prev');
+ a_toolbar.HideButton('next');
+ a_toolbar.HideButton('sep1');
+
+
+ a_toolbar.DisableButton('next');
+
+
+ a_toolbar.DisableButton('prev');
+
+
Index: branches/5.1.x/core/units/users/users_config.php
===================================================================
diff -u -r14132 -r14155
--- branches/5.1.x/core/units/users/users_config.php (.../users_config.php) (revision 14132)
+++ branches/5.1.x/core/units/users/users_config.php (.../users_config.php) (revision 14155)
@@ -1,6 +1,6 @@
Array ('u', 'u-ug'),
'edit_status_labels' => Array ('u-ug' => '!la_title_EditingMembership!'),
'format' => "#u_status# '#u_titlefield#' - #u-ug_status# '#u-ug_titlefield#'",
- 'toolbar_buttons' => Array ('select', 'cancel'),
+ 'toolbar_buttons' => Array ('select', 'cancel', 'prev', 'next'),
),
'user_image_edit' => Array (
@@ -195,7 +195,7 @@
'edit_status_labels' => Array ('u-img' => '!la_title_Editing_Image!'),
'new_titlefield' => Array ('u-img' => '!la_title_New_Image!'),
'format' => "#u_status# '#u_titlefield#' - #u-img_status# '#u-img_titlefield#'",
- 'toolbar_buttons' => Array ('select', 'cancel'),
+ 'toolbar_buttons' => Array ('select', 'cancel', 'prev', 'next'),
),
'user_select' => Array (
Index: branches/5.1.x/core/admin_templates/themes/file_edit.tpl
===================================================================
diff -u -r13949 -r14155
--- branches/5.1.x/core/admin_templates/themes/file_edit.tpl (.../file_edit.tpl) (revision 13949)
+++ branches/5.1.x/core/admin_templates/themes/file_edit.tpl (.../file_edit.tpl) (revision 14155)
@@ -25,7 +25,32 @@
}
) );
+ a_toolbar.AddButton( new ToolBarSeparator('sep1') );
+
+ a_toolbar.AddButton( new ToolBarButton('prev', '', function() {
+ go_to_id('theme-file', '');
+ }
+ ));
+
+ a_toolbar.AddButton( new ToolBarButton('next', '', function() {
+ go_to_id('theme-file', '');
+ }
+ ));
+
a_toolbar.Render();
+
+
+ a_toolbar.HideButton('prev');
+ a_toolbar.HideButton('next');
+ a_toolbar.HideButton('sep1');
+
+
+ a_toolbar.DisableButton('next');
+
+
+ a_toolbar.DisableButton('prev');
+
+
Index: branches/5.1.x/admin/system_presets/simple/categories_c.php
===================================================================
diff -u -r13951 -r14155
--- branches/5.1.x/admin/system_presets/simple/categories_c.php (.../categories_c.php) (revision 13951)
+++ branches/5.1.x/admin/system_presets/simple/categories_c.php (.../categories_c.php) (revision 14155)
@@ -26,16 +26,13 @@
// 'categories_relations' => Array ('select', 'cancel', 'prev', 'next', 'new_item', 'edit', 'delete', 'approve', 'decline', 'view', 'dbl-click'),
// 'categories_propertiries' => Array ('select', 'cancel', 'prev', 'next'),
-
// 'categories_permissions' => Array ('select', 'cancel', 'prev', 'next'),
-
// 'categories_images' => Array ('select', 'cancel', 'prev', 'next', 'new_item', 'edit', 'delete', 'move_up', 'move_down', 'setprimary', 'view', 'dbl-click'),
-
// 'reviews' => Array ('edit', 'delete', 'approve', 'decline', 'view', 'dbl-click'),
-
// 'categories_related_searches' => Array ('new_item', 'edit', 'delete', 'move_up', 'move_down', 'approve', 'decline', 'view', 'dbl-click'),
-
-// 'related_searches_edit' => Array ('select', 'cancel'),
+// 'related_searches_edit' => Array ('select', 'cancel', 'prev', 'next'),
+// 'images_edit' => Array ('select', 'cancel', 'prev', 'next'),
+// 'relations_edit' => Array ('select', 'cancel', 'prev', 'next'),
);
// fields to hide