96 Commits

Author SHA1 Message Date
Kim Keown
80286deda7 Revise settings-advanced.php - Admin folder rename
Update 10-27. Upon further reading about global variables, it seems they only need to be declared when the string replacement is within a function. After testing deletion of the global intended to encompass if/else replacements occurring within a function file outside of a function, the pages appear to 'function' normally. The additional global on the function pages is apparently unnecessary, therefore I am removing them.

Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
	Redirect::page($adminfolder, 'dashboard');
Original:   	Redirect::page('admin', 'dashboard');

Line 54 - Replace Admin string with folder variable:
	Redirect::page($adminfolder, $layout['controller']);
Original:   	Redirect::page('admin', $layout['controller']);
2016-10-27 09:30:41 -06:00
Kim Keown
fa6847ab39 Revision to edit-user.php - Admin folder rename
Update 10-27. Upon further reading about global variables, it seems they are only declared when the string replacement is within a function. After testing deletion of the global intended to encompass if/else replacements occurring within a function file outside of the functions, the pages appear to work normally. The additional global on the function pages is apparently unnecessary, therefore I am removing them.

Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 114 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'users');
Original: 	Redirect::page('admin', 'users');
2016-10-27 09:19:08 -06:00
Kim Keown
d6e2cb7383 Revise edit-post.php - Admin folder rename
Update 10-27. Upon further reading about global variables, it seems they are only declared when the string replacement is within a function. After testing deletion of the global intended to encompass if/else replacements occurring within a function file outside of the functions, the pages appear to work normally. The additional global on the function pages is apparently unnecessary, therefore I am removing them.

Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15- Reference Admin folder variable within function
	       global $adminfolder;

Line 30 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'edit-post/'.$args['slug']);
Original: 	Redirect::page('admin', 'edit-post/'.$args['slug']);

Line 44- Reference Admin folder variable within function
	      global $adminfolder;

Line 55 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-posts');
Original: 	Redirect::page('admin', 'manage-posts');

Line 88 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-posts');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-27 09:15:51 -06:00
Kim Keown
cb75b24aa7 Revision to edit-page.php - Admin folder rename
Update 10-27. Upon further reading about global variables, it seems they are only declared when the string replacement is within a function. After testing deletion of the global intended to encompass if/else replacements occurring within a function file outside of the functions, the pages appear to work normally. The additional global on the function pages is apparently unnecessary, therefore I am removing them.

Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15- Reference Admin folder variable within function
	     global $adminfolder;

Line 33 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'edit-page/'.$args['slug']);
Original: 	Redirect::page('admin', 'edit-page/'.$args['slug']);

Line 45- Reference Admin folder variable within function
	     global $adminfolder;

Line 53 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');

Line 88 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-27 09:12:38 -06:00
Kim Keown
84fa70d9e1 Revision add-user.php - Admin folder rename
Update 10-27. Upon further reading about global variables, it seems they only need to be declared when the string replacement is within a function. After testing deletion of the global intended to encompass if/else replacements occurring within a function file outside of the functions, the pages appear to work normally. The additional global on the function pages is apparently unnecessary, therefore I am removing them.

Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 11 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');

Line 81- Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'users');
Original: 	Redirect::page('admin', 'users');
2016-10-27 09:09:03 -06:00
Kim Keown
6196260c17 Revision users.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
	     Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');
2016-10-25 07:03:53 -06:00
Kim Keown
6931a53030 Revise user-password.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 40 - Reference Admin folder variable 
               global $adminfolder;

Line 55 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'users');
Original:   	Redirect::page('admin', 'users');

Line 71 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'users');
Original:   	Redirect::page('admin', 'users')
2016-10-25 07:02:03 -06:00
Kim Keown
bd5440c0d7 Revise uninstall-plugin.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
	         Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');

Line 32 - Replace Admin string with folder variable:
               Redirect::page($adminfolder, 'plugins');
Original: 	Redirect::page('admin', 'plugins');
2016-10-25 06:57:25 -06:00
Kim Keown
231482d2c4 Revision themes.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
	     Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');
2016-10-25 06:54:10 -06:00
Kim Keown
0bec155d8b Revise settings.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 3 - Reference Admin folder variable 
             global $adminfolder;

Line 11 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'dashboard');
Original:   	Redirect::page('admin', 'dashboard');

Line 58 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, $layout['controller']);
Original:   	Redirect::page('admin', $layout['controller']);
2016-10-25 06:51:48 -06:00
Kim Keown
ec9498c03a Revise settings-regional.php- Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 3 - Reference Admin folder variable 
             global $adminfolder;

Line 11 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'dashboard');
Original:   	Redirect::page('admin', 'dashboard');

Line 58 - Replace Admin string with folder variable:
	       Redirect::page($adminfolder, $layout['controller']);
Original:   	Redirect::page('admin', $layout['controller']);
2016-10-25 06:48:40 -06:00
Kim Keown
22919fd52b Revise settings-general.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 3 - Reference Admin folder variable 
             global $adminfolder;

Line 11 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'dashboard');
Original:   	Redirect::page('admin', 'dashboard');


Line 58 - Replace Admin string with folder variable:
	         Redirect::page($adminfolder, $layout['controller']);
Original:   	Redirect::page('admin', $layout['controller']);
2016-10-25 06:43:53 -06:00
Kim Keown
8f04e5b9f8 Revise settings-advanced.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 3 - Reference Admin folder variable 
               global $adminfolder;

Line 11 - Replace Admin string with folder variable:
	Redirect::page($adminfolder, 'dashboard');
Original:   	Redirect::page('admin', 'dashboard');

Line 56 - Replace Admin string with folder variable:
	Redirect::page($adminfolder, $layout['controller']);
Original:   	Redirect::page('admin', $layout['controller']);
2016-10-25 06:36:34 -06:00
Kim Keown
e48417bbfc Revision plugins.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
	Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');
2016-10-25 06:29:47 -06:00
Kim Keown
9ee2292b7b Revise new-post.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 14 - Reference Admin folder variable within function
	       global $adminfolder;

Line 29 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-posts');
Original:   Redirect::page('admin', 'manage-posts');
2016-10-25 06:26:39 -06:00
Kim Keown
75ea887348 Revise new-page.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15 - Reference Admin folder variable within function
	       global $adminfolder;

Line 27 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-25 06:23:30 -06:00
Kim Keown
bc50352c93 Revise login.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 16- Reference Admin folder variable within function
	      global $adminfolder;

Line 29 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');
2016-10-25 06:18:08 -06:00
Kim Keown
1b37c3f537 Revise login-email.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 17 - Reference Admin folder variable within function
	       	global $adminfolder;

Line 37 - Replace Admin string with folder variable:
		$link = $Site->url().$adminfolder.'/login-email?tokenEmail='.$token.'&username='.$username;
Original: 	$link = $Site->url().'admin/login-email?tokenEmail='.$token.'&username='.$username;


Line 78 - Reference Admin folder variable within function
	      global $adminfolder;

Line 91 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'dashboard');
Original:  Redirect::page('admin', 'dashboard');
2016-10-25 06:12:40 -06:00
Kim Keown
3e5b1380e3 Revise install-theme.php- Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');

Line 39 - Replace Admin string with folder variable:
                Redirect::page($adminfolder, 'themes');
Original: 	Redirect::page('admin', 'themes');
2016-10-25 06:03:52 -06:00
Kim Keown
b54418e86a Revise install-plugin.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');


Line 36 - Replace Admin string with folder variable:
                Redirect::page($adminfolder, 'plugins');
Original: 	Redirect::page('admin', 'plugins');
2016-10-25 06:00:34 -06:00
Kim Keown
fc2a350f2f Revision to edit-user.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 113- Reference Admin folder variable 
             global $adminfolder;

Line 115 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'users');
Original: 	Redirect::page('admin', 'users');
2016-10-25 05:56:59 -06:00
Kim Keown
f6d66b0634 Revise edit-post.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15- Reference Admin folder variable within function
	       global $adminfolder;

Line 30 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'edit-post/'.$args['slug']);
Original: 	Redirect::page('admin', 'edit-post/'.$args['slug']);

Line 44- Reference Admin folder variable within function
	      global $adminfolder;

Line 55 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-posts');
Original: 	Redirect::page('admin', 'manage-posts');

Line 85- Reference Admin folder variable
              global $adminfolder;

Line 90 - Replace Admin string with folder variable:
	Redirect::page('admin', 'manage-posts');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-25 05:46:57 -06:00
Kim Keown
64eb3382a2 Update edit-post.php
Revise edit-post.php - Admin folder rename

Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15- Reference Admin folder variable within function
	       global $adminfolder;

Line 30 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'edit-post/'.$args['slug']);
Original: 	Redirect::page('admin', 'edit-post/'.$args['slug']);

Line 44- Reference Admin folder variable within function
	      global $adminfolder;

Line 55 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-posts');
Original: 	Redirect::page('admin', 'manage-posts');

Line 85- Reference Admin folder variable
              global $adminfolder;

Line 90 - Replace Admin string with folder variable:
	       Redirect::page($adminfolder, 'manage-posts');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-25 05:46:19 -06:00
Kim Keown
6c69c2d16b Revise edit-page.php - Admin folder rename
Revision to edit-page.php - Admin folder rename

Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15- Reference Admin folder variable within function
	     global $adminfolder;

Line 33 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'edit-page/'.$args['slug']);
Original: 	Redirect::page('admin', 'edit-page/'.$args['slug']);

Line 45- Reference Admin folder variable within function
	     global $adminfolder;

Line 53 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');

Line 83- Reference Admin folder variable
               global $adminfolder;

Line 88 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-25 05:41:37 -06:00
Kim Keown
6ac3aec1e9 Revise edit-post.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15- Reference Admin folder variable within function
	       global $adminfolder;

Line 30 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'edit-post/'.$args['slug']);
Original: 	Redirect::page('admin', 'edit-post/'.$args['slug']);

Line 44- Reference Admin folder variable within function
	      global $adminfolder;

Line 55 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-posts');
Original: 	Redirect::page('admin', 'manage-posts');

Line 85- Reference Admin folder variable
              global $adminfolder;

Line 90 - Replace Admin string with folder variable:
	Redirect::page('admin', 'manage-posts');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-25 05:34:17 -06:00
Kim Keown
259d4c3e34 Update edit-page.php
Revision to edit-page.php - Admin folder rename

Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15- Reference Admin folder variable within function
	     global $adminfolder;

Line 33 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'edit-page/'.$args['slug']);
Original: 	Redirect::page('admin', 'edit-page/'.$args['slug']);

Line 45- Reference Admin folder variable within function
	     global $adminfolder;

Line 53 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');

Line 83- Reference Admin folder variable
               global $adminfolder;

Line 88 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-25 05:21:30 -06:00
Kim Keown
218d461ac9 Revision to edit-page.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 15- Reference Admin folder variable within function
	     global $adminfolder;

Line 33 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'edit-page/'.$args['slug']);
Original: 	Redirect::page('admin', 'edit-page/'.$args['slug']);

Line 45- Reference Admin folder variable within function
	     global $adminfolder;

Line 53 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');

Line 83- Reference Admin folder variable within function
               global $adminfolder;

Line 88 - Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'manage-pages');
Original: 	Redirect::page('admin', 'manage-pages');
2016-10-25 05:20:05 -06:00
Kim Keown
c29ee5b685 Revise configure-plugin.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');

Line 31 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'plugins');
Original: 	Redirect::page('admin', 'plugins');

Line 36- Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'plugins');
Original: 	Redirect::page('admin', 'plugins');
2016-10-25 05:08:43 -06:00
Kim Keown
3f7504660e Revision add-user.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 3- Admin folder variable
	     global $adminfolder;

Line 11 - Replace Admin string with folder variable:
	        Redirect::page($adminfolder, 'dashboard');
Original: 	Redirect::page('admin', 'dashboard');


Line 81- Replace Admin string with folder variable:
		Redirect::page($adminfolder, 'users');
Original: 	Redirect::page('admin', 'users');
2016-10-25 05:02:22 -06:00
Kim Keown
c8bf86d0d0 Revision about.php - Admin folder rename
Add variable in bl-kernel/boot/init.php that allows User to rename bl-kernel/admin folder. 
User can then define variable in bl-kernel/boot/init.php and change the foldername itself to effect the rename. 

Add global $adminfolder variable as necessary and replace relevant 'admin' strings with $adminfolder.
Applies to most of the files in bl-kernel/admin/controllers.

Line 9 - Replace Admin string with folder variable:
              Redirect::page($adminfolder, 'dashboard');
Original: Redirect::page('admin', 'dashboard');
2016-10-25 04:52:32 -06:00
dignajar
3079bbbd76 Metadata updated for 1.5.2 2016-10-12 23:03:43 -03:00
dignajar
69184abf02 Bludit v1.5.2 2016-10-11 22:33:52 -03:00
Diego Najar
ef58ba8daa Profile picture bug fixed 2016-10-05 16:56:16 -03:00
dignajar
17bd1d2f1a Spanish language updated 2016-09-27 21:17:39 -03:00
dignajar
26670ae9a8 Minor fixes 2016-09-27 20:49:58 -03:00
dignajar
4b29ea64d5 Links to new page and new post 2016-09-25 17:38:03 -03:00
dignajar
a4aeb4e6e9 jQuery new version 2016-09-25 15:48:38 -03:00
Hristo Dipchikov
ac3aa1ca9b Merge remote-tracking branch 'upstream/master' 2016-09-21 08:34:15 +03:00
dignajar
36595b71aa jQuery updated, and minor fixes 2016-09-20 23:17:45 -03:00
Hristo Dipchikov
01b7e74361 Update 2016-09-19 10:43:06 +03:00
Hristo Dipchikov
ffce70ce16 Dashboard responsive update tranlation 2016-09-15 13:02:42 +03:00
Hristo Dipchikov
bc0577a62e Dashboard responsive update tranlation 2016-09-15 11:41:02 +03:00
dignajar
8cd1446fd3 Dashboard responsive 2016-09-14 14:48:56 -03:00
dignajar
fb924d6eaf Dashboard responsive 2016-09-14 00:14:31 -03:00
dignajar
d53ac5f0cf Dashboard responsive 2016-09-14 00:09:14 -03:00
dignajar
f99eda14af Dashboard responsive 2016-09-13 23:59:12 -03:00
dignajar
ed8233c0eb New Dashboard 2016-09-07 16:16:14 -03:00
dignajar
0e99046419 New Dashboard 2016-09-07 10:03:53 -03:00
dignajar
832e47e94a New feature, disable user account 2016-09-06 21:14:57 -03:00
dignajar
e040d96d4c Dashboard, Improves on Installer 2016-08-30 22:44:58 -03:00