Update v1.0.6.4

This commit is contained in:
sujitprasad
2016-02-25 11:47:32 +05:30
parent 5126664a24
commit 47046a959a
2 changed files with 14 additions and 18 deletions

View File

@@ -573,8 +573,8 @@ class SettingsController extends Controller
* write provider list in app.php line 128
*/
$app = base_path().'/config/app.php';
$str = "\n\n\t\t\t'App\\Plugins\\$filename"."\\ServiceProvider',";
$line_i_am_looking_for = 144;
$str = "\n\t\t'App\\Plugins\\$filename"."\\ServiceProvider',";
$line_i_am_looking_for = 140;
$lines = file($app, FILE_IGNORE_NEW_LINES);
$lines[$line_i_am_looking_for] = $str;
file_put_contents($app, implode("\n", $lines));
@@ -696,7 +696,7 @@ class SettingsController extends Controller
$str = "'App\\Plugins\\$slug"."\\ServiceProvider',";
$path_to_file = base_path().'/config/app.php';
$file_contents = file_get_contents($path_to_file);
$file_contents = str_replace($str, '//', $file_contents);
$file_contents = str_replace($str, '', $file_contents);
file_put_contents($path_to_file, $file_contents);
$plugin = new Plugin();
$plugin = $plugin->where('path', $slug)->first();
@@ -714,8 +714,8 @@ class SettingsController extends Controller
$plug->status = 1;
$app = base_path().'/config/app.php';
$str = "'App\\Plugins\\$slug"."\\ServiceProvider',";
$line_i_am_looking_for = 144;
$str = "\n\t\t'App\\Plugins\\$slug"."\\ServiceProvider',";
$line_i_am_looking_for = 140;
$lines = file($app, FILE_IGNORE_NEW_LINES);
$lines[$line_i_am_looking_for] = $str;
file_put_contents($app, implode("\n", $lines));
@@ -729,7 +729,7 @@ class SettingsController extends Controller
$path_to_file = base_path().'/config/app.php';
$file_contents = file_get_contents($path_to_file);
$file_contents = str_replace($str, '//', $file_contents);
$file_contents = str_replace($str, '', $file_contents);
file_put_contents($path_to_file, $file_contents);
}
$plug->save();

View File

@@ -13,7 +13,7 @@ return [
|
*/
'debug' => false,
'debug' => true,
/*
|--------------------------------------------------------------------------
@@ -135,14 +135,10 @@ return [
'providers' => [
//
//
//
//
/**
* Faveo Plugins
*/
/*
* Laravel Framework Service Providers...
*/
@@ -187,8 +183,8 @@ return [
Unisharp\Laravelfilemanager\LaravelFilemanagerServiceProvider::class,
Intervention\Image\ImageServiceProvider::class,
'Tymon\JWTAuth\Providers\JWTAuthServiceProvider',
],
],
/*
|--------------------------------------------------------------------------
@@ -253,4 +249,4 @@ return [
'token' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxIiwiaXNzIjoiaHR0cDpcL1wvbG9jYWxob3N0XC9mYXZlby1oZWxwZGVzay1naXRodWJcL3B1YmxpY1wvYXBpXC92MVwvYXV0aGVudGljYXRlIiwiaWF0IjoxNDU1NzAyNDEyLCJleHAiOjE0NTU3MDYwMTIsIm5iZiI6MTQ1NTcwMjQxMiwianRpIjoiOTdlODg1ODNjOWQyNDIzNWQ4MzI3Y2ExNzI1NDY1MDQifQ.37E7H2kRCQuz5oBRkQLKhNNpaNXyk4FiEYS9RQ7HZPY',
];
];