php - How to use database for mail settings in Laravel -
i'd keep users away editing configuration files, i've made web interface in admin panel setting mail server, username, password, port, encryption.. working in laravel 4.2, when app has been rewritten laravel 5, error occurs:
class 'settings' not found in <b>f:\htdocs\app\config\mail.php</b> on line <b>18</b><br />
for purpose i've created service provider, made facade, put them in config/app.php, settings::get('var')/settings::set('var')
work perfectly, not mail settings.
config/mail.php:
<?php return array( 'driver' => settings::get('mail_driver'), 'host' => settings::get('mail_host'), 'port' => settings::get('mail_port'), 'from' => array('address' => settings::get('mail_from_address'), 'name' => settings::get('mail_from_name')), 'encryption' => settings::get('mail_encryption'), 'username' => settings::get('mail_username'), 'password' => settings::get('mail_password'), 'sendmail' => settings::get('mail_sendmail'), 'pretend' => false, );
config/app.php:
'providers' => [ ... 'app\providers\settingsserviceprovider', ... 'aliases' => [ ... 'settings' => 'app\custom\facades\settings',
<?php namespace app\providers; use illuminate\support\serviceprovider; use app\custom\settings; class settingsserviceprovider extends serviceprovider { /** * bootstrap application services. * * @return void */ public function boot() { // } /** * register application services. * * @return void */ public function register() { $this->app->singleton('settings', function() { return new settings; }); } }
<?php namespace app\custom; use app\setting; class settings { public function get($var) { try{ $setting = setting::first(); } catch(exception $e) { return false; } return $setting->$var; } public function set($var, $val) { try{ $setting = setting::first(); $setting->$var = $val; $setting->save(); } catch(exception $e) { return false; } return true; } }
<?php namespace app\custom\facades; use illuminate\support\facades\facade; class settings extends facade { protected static function getfacadeaccessor() { return 'settings'; } }
any ideas how implement laravel mail settings using database?
to archive created custommailserviceprovider
extending illuminate\mail\mailserviceprovider
overwrite method:
protected function registerswifttransport(){ $this->app['swift.transport'] = $this->app->share(function($app) { return new transportmanager($app); }); }
here complete solution
- i created custommailserviceprovider.php in app\providers
namespace app\providers; use illuminate\mail\mailserviceprovider; use app\customs\customtransportmanager; class custommailserviceprovider extends mailserviceprovider{ protected function registerswifttransport(){ $this->app['swift.transport'] = $this->app->share(function($app) { return new customtransportmanager($app); }); } }
- i created customtransportmanager.php in app/customs directory - nb: app/customs directory doesn't exist in default laravel 5 directory structure, created it
namespace app\customs; use illuminate\mail\transportmanager; use app\models\setting; //my models located in app\models class customtransportmanager extends transportmanager { /** * create new manager instance. * * @param \illuminate\foundation\application $app * @return void */ public function __construct($app) { $this->app = $app; if( $settings = setting::all() ){ $this->app['config']['mail'] = [ 'driver' => $settings->mail_driver, 'host' => $settings->mail_host, 'port' => $settings->mail_port, 'from' => [ 'address' => $settings->mail_from_address, 'name' => $settings->mail_from_name ], 'encryption' => $settings->mail_encryption, 'username' => $settings->mail_username, 'password' => $settings->mail_password, 'sendmail' => $settings->mail_sendmail, 'pretend' => $settings->mail_pretend ]; } } }
- and finally, replaced
'illuminate\mail\mailserviceprovider',
in config/app.php'app\providers\custommailserviceprovider',
Comments
Post a Comment