@@ -5,18 +5,18 @@ discard block |
||
| 5 | 5 | use Illuminate\Http\Request; |
| 6 | 6 | use Yaro\Jarboe\Table\CRUD; |
| 7 | 7 | |
| 8 | -class MassDeleteTool extends AbstractTool |
|
| 9 | -{
|
|
| 8 | +class MassDeleteTool extends AbstractTool |
|
| 9 | +{ |
|
| 10 | 10 | /** |
| 11 | 11 | * Set CRUD object. |
| 12 | 12 | * |
| 13 | 13 | * @param CRUD $crud |
| 14 | 14 | */ |
| 15 | - public function setCrud(CRUD $crud) |
|
| 16 | - {
|
|
| 15 | + public function setCrud(CRUD $crud) |
|
| 16 | + { |
|
| 17 | 17 | parent::setCrud($crud); |
| 18 | 18 | |
| 19 | - if ($this->check()) {
|
|
| 19 | + if ($this->check()) { |
|
| 20 | 20 | $this->crud()->enableBatchCheckboxes(true); |
| 21 | 21 | } |
| 22 | 22 | } |
@@ -24,8 +24,8 @@ discard block |
||
| 24 | 24 | /** |
| 25 | 25 | * Position where should tool be placed. |
| 26 | 26 | */ |
| 27 | - public function position() |
|
| 28 | - {
|
|
| 27 | + public function position() |
|
| 28 | + { |
|
| 29 | 29 | return self::POSITION_BODY_TOP; |
| 30 | 30 | } |
| 31 | 31 | |
@@ -40,8 +40,8 @@ discard block |
||
| 40 | 40 | /** |
| 41 | 41 | * Tool's view. |
| 42 | 42 | */ |
| 43 | - public function render() |
|
| 44 | - {
|
|
| 43 | + public function render() |
|
| 44 | + { |
|
| 45 | 45 | return view('jarboe::crud.toolbar.mass_delete', [
|
| 46 | 46 | 'tool' => $this, |
| 47 | 47 | 'crud' => $this->crud(), |
@@ -55,24 +55,24 @@ discard block |
||
| 55 | 55 | * |
| 56 | 56 | * @return \Illuminate\Http\JsonResponse |
| 57 | 57 | */ |
| 58 | - public function handle(Request $request) |
|
| 59 | - {
|
|
| 58 | + public function handle(Request $request) |
|
| 59 | + { |
|
| 60 | 60 | $errors = []; |
| 61 | 61 | $hidden = []; |
| 62 | 62 | $removed = []; |
| 63 | - foreach ($request->get('ids') as $id) {
|
|
| 64 | - try {
|
|
| 65 | - if (!$this->crud()->repo()->delete($id)) {
|
|
| 63 | + foreach ($request->get('ids') as $id) { |
|
| 64 | + try { |
|
| 65 | + if (!$this->crud()->repo()->delete($id)) { |
|
| 66 | 66 | throw new \Exception(__('jarboe::toolbar.mass_delete.delete_event_failed'));
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - try {
|
|
| 69 | + try { |
|
| 70 | 70 | $this->crud()->repo()->find($id); |
| 71 | 71 | $hidden[] = $id; |
| 72 | - } catch (\Exception $e) {
|
|
| 72 | + } catch (\Exception $e) { |
|
| 73 | 73 | $removed[] = $id; |
| 74 | 74 | } |
| 75 | - } catch (\Exception $e) {
|
|
| 75 | + } catch (\Exception $e) { |
|
| 76 | 76 | $errors[$id] = $e->getMessage(); |
| 77 | 77 | } |
| 78 | 78 | } |
@@ -150,10 +150,12 @@ |
||
| 150 | 150 | $model->{$this->getRelationMethod($index)}()->saveMany($relatedList); |
| 151 | 151 | break; |
| 152 | 152 | case MorphToMany::class: |
| 153 | - if ($relation['group']) { // is morphedByMany |
|
| 153 | + if ($relation['group']) { |
|
| 154 | +// is morphedByMany |
|
| 154 | 155 | $ids = $this->filterValuesForMorphToManyRelation($ids, crc32($relation['group'])); |
| 155 | 156 | $model->{$this->getRelationMethod($index)}()->sync($ids); |
| 156 | - } else { // is morphToMany |
|
| 157 | + } else { |
|
| 158 | +// is morphToMany |
|
| 157 | 159 | $model->{$this->getRelationMethod($index)}()->update([ |
| 158 | 160 | $model->{$this->getRelationMethod($index)}()->getMorphType() => null, |
| 159 | 161 | $model->{$this->getRelationMethod($index)}()->getForeignPivotKeyName() => null, |
@@ -9,9 +9,13 @@ |
||
| 9 | 9 | private $styles = []; |
| 10 | 10 | private $scripts = []; |
| 11 | 11 | |
| 12 | - private function __construct() {} |
|
| 12 | + private function __construct() |
|
| 13 | + { |
|
| 14 | +} |
|
| 13 | 15 | |
| 14 | - private function __clone() {} |
|
| 16 | + private function __clone() |
|
| 17 | + { |
|
| 18 | +} |
|
| 15 | 19 | |
| 16 | 20 | private static function getInstance() |
| 17 | 21 | { |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | use Yaro\Jarboe\Console\Commands\Make\Tool as MakeTool; |
| 10 | 10 | use Yaro\Jarboe\Helpers\Locale; |
| 11 | 11 | |
| 12 | -class ServiceProvider extends IlluminateServiceProvider |
|
| 12 | +class ServiceProvider extends IlluminateServiceProvider |
|
| 13 | 13 | { |
| 14 | 14 | |
| 15 | 15 | /** |
@@ -25,18 +25,18 @@ |
||
| 25 | 25 | </thead> |
| 26 | 26 | <?php |
| 27 | 27 | |
| 28 | -if (!empty($_POST)) |
|
| 29 | -{ |
|
| 30 | - foreach ( $_POST as $key => $value ) |
|
| 31 | - { |
|
| 32 | - if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) |
|
| 33 | - continue; |
|
| 28 | +if (!empty($_POST)) { |
|
| 29 | + foreach ( $_POST as $key => $value ) { |
|
| 30 | + if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) { |
|
| 31 | + continue; |
|
| 32 | + } |
|
| 34 | 33 | |
| 35 | - if ( get_magic_quotes_gpc() ) |
|
| 36 | - $value = htmlspecialchars( stripslashes((string)$value) ); |
|
| 37 | - else |
|
| 38 | - $value = htmlspecialchars( (string)$value ); |
|
| 39 | -?> |
|
| 34 | + if ( get_magic_quotes_gpc() ) { |
|
| 35 | + $value = htmlspecialchars( stripslashes((string)$value) ); |
|
| 36 | + } else { |
|
| 37 | + $value = htmlspecialchars( (string)$value ); |
|
| 38 | + } |
|
| 39 | + ?> |
|
| 40 | 40 | <tr> |
| 41 | 41 | <th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th> |
| 42 | 42 | <td><pre class="samples"><?php echo $value; ?></pre></td> |