当前位置: 首页>>代码示例>>PHP>>正文


PHP Configure::firstOrNew方法代码示例

本文整理汇总了PHP中Configure::firstOrNew方法的典型用法代码示例。如果您正苦于以下问题:PHP Configure::firstOrNew方法的具体用法?PHP Configure::firstOrNew怎么用?PHP Configure::firstOrNew使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Configure的用法示例。


在下文中一共展示了Configure::firstOrNew方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: updateConfigure

 public function updateConfigure()
 {
     if (Input::has('pk')) {
         if (!Request::ajax()) {
             return App::abort(404);
         }
         return self::updateQuickEdit();
     } else {
         if (Request::ajax()) {
             $arrReturn = ['status' => 'error'];
             $configure = new Configure();
             $configure->cname = Input::get('cname');
             $configure->ckey = Input::get('ckey');
             if (Input::hasFile('cvalue')) {
                 $path = app_path('files');
                 if (!File::exists($path)) {
                     File::makeDirectory($path, 493, true);
                 }
                 $path = str_replace(['\\', '/'], DS, $path);
                 $file = Input::file('cvalue');
                 $file->move($path, $configure->ckey . '.' . $file->getClientOriginalExtension());
                 $configure->cvalue = $path . DS . $configure->ckey . '.' . $file->getClientOriginalExtension();
             } else {
                 $configure->cvalue = Input::get('cvalue');
             }
             $configure->cdescription = Input::get('cdescription');
             $configure->active = Input::has('active') ? 1 : 0;
             $pass = $configure->valid();
             if ($pass) {
                 $configure->save();
                 $arrReturn = ['status' => 'ok'];
                 $arrReturn['message'] = $configure->cname . ' has been saved';
                 $arrReturn['data'] = $configure;
             } else {
                 $arrReturn['message'] = '';
                 $arrErr = $pass->messages()->all();
                 foreach ($arrErr as $value) {
                     $arrReturn['message'] .= "{$value}\n";
                 }
             }
             $response = Response::json($arrReturn);
             $response->header('Content-Type', 'application/json');
             return $response;
         }
     }
     $arrPost = Input::all();
     unset($arrPost['_token']);
     foreach ($arrPost as $key => $value) {
         if (in_array($key, ['main_logo', 'favicon'])) {
             if (!Input::hasFile($key)) {
                 continue;
             }
             if ($key == 'main_logo') {
                 $path = public_path('assets' . DS . 'images' . DS . 'logos');
                 $width = 400;
                 $name = 'logo';
             } else {
                 if ($key == 'favicon') {
                     $path = public_path('assets' . DS . 'images' . DS . 'favicons');
                     $width = 16;
                     $name = 'favicon';
                 }
             }
             $configure = Configure::firstOrNew(['ckey' => $key]);
             $configure->ckey = $key;
             $configure->cname = Str::title(str_replace('_', ' ', $key));
             if (!empty($configure->cvalue) && File::exists(public_path($configure->cvalue))) {
                 File::delete(public_path($configure->cvalue));
             }
             $path = VIImage::upload(Input::file($key), $path, $width, false, $name);
             $path = str_replace(public_path() . DS, '', $path);
             $configure->cvalue = str_replace(DS, '/', $path);
             $configure->save();
         } else {
             $configure = Configure::firstOrNew(['ckey' => $key]);
             $configure->ckey = $key;
             $configure->cname = Str::title(str_replace('_', ' ', $key));
             $configure->cvalue = $value;
             $configure->save();
             if ($key == 'mask') {
                 Cache::tags('images')->flush();
                 Cache::forever('mask', $value);
             }
         }
     }
     return Redirect::to(URL . '/admin/configures')->with('flash_success', 'Main Configure has been saved.');
 }
开发者ID:nguyendaivu,项目名称:imagestock,代码行数:87,代码来源:ConfiguresController.php

示例2: updateEmail

 public function updateEmail()
 {
     if (!Request::isMethod('post')) {
         return App::abort(404);
     }
     $arrPost = Input::all();
     unset($arrPost['_token']);
     foreach ($arrPost as $key => $value) {
         $key = 'email_' . $key;
         $configure = Configure::firstOrNew(['ckey' => $key]);
         $configure->ckey = $key;
         $configure->cname = Str::title(str_replace('email_', ' ', $key));
         $configure->cvalue = $value;
         $configure->save();
     }
     return Redirect::to(URL . '/admin/email-templates')->with('flash_success', 'Email Configure has been saved.');
 }
开发者ID:nguyendaivu,项目名称:imagestock,代码行数:17,代码来源:EmailTemplatesController.php


注:本文中的Configure::firstOrNew方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。