89 Commits

Author SHA1 Message Date
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
dignajar
f14d3d69f7 Dashboard, Improves on Installer 2016-08-30 21:57:24 -03:00
Alexandre Teles
acb32518ca Allow SVG upload
Just to make #222 able to merge again
2016-08-22 15:05:35 -03:00
dignajar
a79de17b24 Dashboard, plugins and themes compatibility 2016-08-09 20:46:56 -03:00
dignajar
6f9064046a Working on Dashboard 2016-08-08 23:43:33 -03:00
Diego Najar
a5af1ec827 Merge pull request #314 from janxb/patch-1
Fixed PHP notice after installation and javascript translations
2016-07-29 00:54:38 +02:00
dignajar
fae098ee6f Bug fixes, index.md compatibility 2016-07-25 20:43:41 -03:00
janxb
3e94580a87 fixed typo in translation. fixes #294 2016-07-25 17:05:01 +02:00