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


PHP Component::create方法代码示例

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


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

示例1: handle

 /**
  * Handle the add component command.
  *
  * @param \CachetHQ\Cachet\Commands\Component\AddComponentCommand $command
  *
  * @return \CachetHQ\Cachet\Models\Component
  */
 public function handle(AddComponentCommand $command)
 {
     $componentData = array_filter(['name' => $command->name, 'description' => $command->description, 'link' => $command->link, 'status' => $command->status, 'order' => $command->order, 'group_id' => $command->group_id]);
     $componentData['enabled'] = $command->enabled;
     $component = Component::create($componentData);
     event(new ComponentWasAddedEvent($component));
     return $component;
 }
开发者ID:rafix82,项目名称:Cachet,代码行数:15,代码来源:AddComponentCommandHandler.php

示例2: seedComponents

 /**
  * Seed the components table.
  *
  * @return void
  */
 protected function seedComponents()
 {
     $defaultComponents = [['name' => 'API', 'description' => 'Used by third-parties to connect to us', 'status' => 1, 'order' => 0, 'group_id' => 0, 'link' => ''], ['name' => 'Documentation', 'description' => 'Kindly powered by Readme.io', 'status' => 1, 'order' => 0, 'group_id' => 0, 'link' => 'https://docs.cachethq.io'], ['name' => 'Website', 'description' => '', 'status' => 1, 'order' => 0, 'group_id' => 0, 'link' => 'https://cachethq.io'], ['name' => 'Blog', 'description' => 'The Cachet Blog.', 'status' => 1, 'order' => 0, 'group_id' => 0, 'link' => 'https://blog.cachethq.io']];
     Component::truncate();
     foreach ($defaultComponents as $component) {
         Component::create($component);
     }
 }
开发者ID:seanherron,项目名称:Cachet,代码行数:13,代码来源:DemoSeederCommand.php

示例3: run

 /**
  * Run the database seeding.
  *
  * @return void
  */
 public function run()
 {
     Model::unguard();
     $defaultComponents = [["name" => "API", "description" => "Used by third-parties to connect to us", "status" => 1, "user_id" => 1], ["name" => "Payments", "description" => "Backed by Stripe", "status" => 1, "user_id" => 1], ["name" => "Website", "status" => 1, "user_id" => 1]];
     Component::truncate();
     foreach ($defaultComponents as $component) {
         Component::create($component);
     }
 }
开发者ID:baa-archieve,项目名称:Cachet,代码行数:14,代码来源:ComponentTableSeeder.php

示例4: postComponents

 /**
  * Create a new component.
  *
  * @param \Illuminate\Contracts\Auth\Guard $auth
  *
  * @return \CachetHQ\Cachet\Models\Component
  */
 public function postComponents(Guard $auth)
 {
     $componentData = Binput::except('tags');
     try {
         $component = Component::create($componentData);
     } catch (Exception $e) {
         throw new BadRequestHttpException();
     }
     if (Binput::has('tags')) {
         // The component was added successfully, so now let's deal with the tags.
         $tags = preg_split('/ ?, ?/', Binput::get('tags'));
         // For every tag, do we need to create it?
         $componentTags = array_map(function ($taggable) use($component) {
             return Tag::firstOrCreate(['name' => $taggable])->id;
         }, $tags);
         $component->tags()->sync($componentTags);
     }
     return $this->item($component);
 }
开发者ID:kulado,项目名称:Cachet,代码行数:26,代码来源:ComponentController.php

示例5: handle

 /**
  * Handle the add component command.
  *
  * @param \CachetHQ\Cachet\Bus\Commands\Component\AddComponentCommand $command
  *
  * @return \CachetHQ\Cachet\Models\Component
  */
 public function handle(AddComponentCommand $command)
 {
     $component = Component::create($this->filter($command));
     event(new ComponentWasAddedEvent($component));
     return $component;
 }
开发者ID:mohitsethi,项目名称:Cachet,代码行数:13,代码来源:AddComponentCommandHandler.php

示例6: createComponentAction

 /**
  * Creates a new component.
  *
  * @return \Illuminate\Http\RedirectResponse
  */
 public function createComponentAction()
 {
     $_component = Binput::get('component');
     $component = Component::create($_component);
     return Redirect::back()->with('component', $component);
 }
开发者ID:baa-archieve,项目名称:Cachet,代码行数:11,代码来源:DashComponentController.php

示例7: createComponentAction

 /**
  * Creates a new component.
  *
  * @return \Illuminate\Http\RedirectResponse
  */
 public function createComponentAction()
 {
     $_component = Binput::get('component');
     // We deal with tags separately.
     $tags = array_pull($_component, 'tags');
     try {
         $component = Component::create($_component);
     } catch (ValidationException $e) {
         return Redirect::back()->withInput(Binput::all())->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.components.add.failure')))->withErrors($e->getMessageBag());
     }
     // The component was added successfully, so now let's deal with the tags.
     $tags = preg_split('/ ?, ?/', $tags);
     // For every tag, do we need to create it?
     $componentTags = array_map(function ($taggable) use($component) {
         return Tag::firstOrCreate(['name' => $taggable])->id;
     }, $tags);
     $component->tags()->sync($componentTags);
     return Redirect::back()->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.components.add.success')));
 }
开发者ID:seanherron,项目名称:Cachet,代码行数:24,代码来源:ComponentController.php

示例8: createComponentAction

 /**
  * Creates a new component.
  *
  * @return \Illuminate\Http\RedirectResponse
  */
 public function createComponentAction()
 {
     $_component = Binput::get('component');
     // We deal with tags separately.
     $tags = array_pull($_component, 'tags');
     $component = Component::create($_component);
     if (!$component->isValid()) {
         segment_track('Dashboard', ['event' => 'Created Component', 'success' => false]);
         return Redirect::back()->withInput(Binput::all())->with('title', sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.components.add.failure')))->with('errors', $component->getErrors());
     }
     segment_track('Dashboard', ['event' => 'Created Component', 'success' => true]);
     // The component was added successfully, so now let's deal with the tags.
     $tags = preg_split('/ ?, ?/', $tags);
     // For every tag, do we need to create it?
     $componentTags = array_map(function ($taggable) use($component) {
         return Tag::firstOrCreate(['name' => $taggable])->id;
     }, $tags);
     $component->tags()->sync($componentTags);
     $successMsg = sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.components.add.success'));
     return Redirect::back()->with('success', $successMsg);
 }
开发者ID:hd-deman,项目名称:Cachet,代码行数:26,代码来源:ComponentController.php

示例9: handle

 /**
  * Handle the add component command.
  *
  * @param \CachetHQ\Cachet\Commands\Component\AddComponentCommand $command
  *
  * @return \CachetHQ\Cachet\Models\Component
  */
 public function handle(AddComponentCommand $command)
 {
     $component = Component::create(['name' => $command->name, 'description' => $command->description, 'link' => $command->link, 'status' => $command->status, 'order' => $command->order, 'group_id' => $command->group_id]);
     event(new ComponentWasAddedEvent($component));
     return $component;
 }
开发者ID:practico,项目名称:Cachet,代码行数:13,代码来源:AddComponentCommandHandler.php

示例10: seedComponents

 /**
  * Seed the components table.
  *
  * @return void
  */
 protected function seedComponents()
 {
     $defaultComponents = [['name' => 'API', 'description' => 'Used by third-parties to connect to us', 'status' => 1, 'order' => 0, 'group_id' => 0, 'link' => ''], ['name' => 'Documentation', 'description' => 'Kindly powered by Readme.io', 'status' => 1, 'order' => 0, 'group_id' => 1, 'link' => 'https://docs.cachethq.io'], ['name' => 'Website', 'description' => '', 'status' => 1, 'order' => 0, 'group_id' => 1, 'link' => 'https://cachethq.io'], ['name' => 'Blog', 'description' => 'The Alt Three Blog.', 'status' => 1, 'order' => 0, 'group_id' => 2, 'link' => 'https://blog.alt-three.com'], ['name' => 'StyleCI', 'description' => 'The PHP Coding Style Service.', 'status' => 1, 'order' => 1, 'group_id' => 2, 'link' => 'https://styleci.io'], ['name' => 'Patreon Page', 'description' => 'Support future development of Cachet.', 'status' => 1, 'order' => 0, 'group_id' => 0, 'link' => 'https://patreon.com/jbrooksuk']];
     Component::truncate();
     foreach ($defaultComponents as $component) {
         Component::create($component);
     }
 }
开发者ID:aksalj,项目名称:Cachet,代码行数:13,代码来源:DemoSeederCommand.php


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