-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
542 changed files
with
5,386 additions
and
5,517 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
app/admin/dashboardwidgets/charts/charts.php → .../dashboardwidgets/charts/charts.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 12 additions & 12 deletions
24
...ashboardwidgets/onboarding/onboarding.php → ...rdwidgets/onboarding/onboarding.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<div class="dashboard-widget widget-onboarding"> | ||
<h6 class="widget-title"><?= e(trans($this->property('title'))) ?></h6> | ||
<h6 class="widget-title">@lang($this->property('title'))</h6> | ||
<div class="row"> | ||
<div class="list-group list-group-flush w-100"> | ||
<?php foreach ($onboarding->listSteps() as $step) { ?> | ||
<?php if ($completed = $step->completed AND $completed()) { ?> | ||
@foreach($onboarding->listSteps() as $step) | ||
@if($completed = $step->completed AND $completed()) | ||
<div class="list-group-item bg-transparent"> | ||
<i class="fa fa-check-circle-o fa-2x text-success float-left mr-3 my-2"></i> | ||
<s class="d-block text-truncate"><?= e(trans($step->label)); ?></s> | ||
<s class="text-muted d-block text-truncate"><?= e(trans($step->description)); ?></s> | ||
<s class="d-block text-truncate">@lang($step->label)</s> | ||
<s class="text-muted d-block text-truncate">@lang($step->description)</s> | ||
</div> | ||
<?php } else { ?> | ||
<a class="list-group-item bg-transparent" href="<?= $step->url; ?>"> | ||
@else | ||
<a class="list-group-item bg-transparent" href="{{ $step->url }}"> | ||
<span class="fa-stack float-left mr-3 my-2"> | ||
<i class="fa fa-circle fa-stack-2x"></i> | ||
<i class="fa <?= e(trans($step->icon)); ?> fa-stack-1x fa-inverse"></i> | ||
<i class="fa @lang($step->icon) fa-stack-1x fa-inverse"></i> | ||
</span> | ||
<b class="d-block text-truncate"><?= e(trans($step->label)); ?></b> | ||
<span class="text-muted d-block text-truncate"><?= e(trans($step->description)); ?></span> | ||
<b class="d-block text-truncate">@lang($step->label)</b> | ||
<span class="text-muted d-block text-truncate">@lang($step->description)</span> | ||
</a> | ||
<?php } ?> | ||
<?php } ?> | ||
@endif | ||
@endforeach | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div class="card-counter {{ $statsContext }}"> | ||
<i class="stat-icon {{ $statsIcon }}"></i> | ||
<span class="stat-number">{{ $statsCount }}</span> | ||
<span class="stat-text">@lang($statsLabel)</span> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@if ($this->previewMode) | ||
<div class="form-control-static">{!! $value !!}</div> | ||
@else | ||
<div | ||
class="field-codeeditor size-{{ $size }}" | ||
data-control="code-editor" | ||
data-mode="{{ $mode }}" | ||
data-theme="{{ $theme }}" | ||
data-line-separator="{{ $lineSeparator }}" | ||
data-read-only="{{ $readOnly }}" | ||
data-height="{{ $size == 'small' ? 250 : 520 }}" | ||
> | ||
<textarea | ||
name="{{ $name }}" | ||
id="{{ $this->getId('textarea') }}" | ||
rows="20" | ||
class="form-control" | ||
>{!! trim($value) !!}</textarea> | ||
</div> | ||
@endif |
This file was deleted.
Oops, something went wrong.
12 changes: 6 additions & 6 deletions
12
...n/formwidgets/colorpicker/colorpicker.php → ...widgets/colorpicker/colorpicker.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
<div | ||
class="input-group control-colorpicker" | ||
data-control="colorpicker" | ||
data-swatches-colors="<?= e(json_encode($availableColors)) ?>" | ||
data-swatches-colors='@json($availableColors)' | ||
> | ||
<div class="component input-group-prepend input-group-icon"><i class="fa fa-square"></i></div> | ||
<input | ||
type="text" | ||
id="<?= $this->getId('input') ?>" | ||
name="<?= $name ?>" | ||
id="{{ $this->getId('input') }}" | ||
name="{{ $name }}" | ||
class="form-control" | ||
value="<?= $value ?>" | ||
<?= $this->previewMode ? 'disabled="disabled"' : '' ?>> | ||
</div> | ||
value="{{ $value }}" | ||
{!! ($this->previewMode) ? 'disabled="disabled"' : '' !!}> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<div | ||
id="{{ $this->getId('items-container') }}" | ||
class="field-connector" | ||
data-control="connector" | ||
data-alias="{{ $this->alias }}" | ||
data-sortable-container="#{{ $this->getId('items') }}" | ||
data-sortable-handle=".{{ $this->getId('items') }}-handle" | ||
> | ||
<div | ||
id="{{ $this->getId('items') }}" | ||
role="tablist" | ||
aria-multiselectable="true"> | ||
{!! $this->makePartial('connector/connector_items') !!} | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<div | ||
id="{{ $this->getId('item-'.$index) }}" | ||
class="card bg-light shadow-sm mb-2" | ||
data-item-index="{{ $index }}" | ||
> | ||
<div class="card-body"> | ||
<div class="d-flex w-100 justify-content-between"> | ||
@if (!$this->previewMode AND $sortable) | ||
<input type="hidden" name="{{ $sortableInputName }}[]" value="{{ $item->getKey() }}"> | ||
<div class="align-self-center"> | ||
<a | ||
class="btn handle {{ $this->getId('items') }}-handle" | ||
role="button"> | ||
<i class="fa fa-arrows-alt-v text-black-50"></i> | ||
</a> | ||
</div> | ||
@endif | ||
<div | ||
class="flex-fill" | ||
data-control="load-item" | ||
data-item-id="{{ $item->getKey() }}" | ||
role="button" | ||
> | ||
@if ($this->partial) | ||
{!! $this->makePartial($this->partial, ['item' => $item]) !!} | ||
@else | ||
<p class="card-title font-weight-bold">{{ $item->{$nameFrom} }}</p> | ||
<p class="card-subtitle mb-0">{{ $item->{$descriptionFrom} }}</p> | ||
@endif | ||
</div> | ||
@unless ($this->previewMode) | ||
<div class="align-self-center ml-auto"> | ||
<a | ||
class="close text-danger" | ||
aria-label="Remove" | ||
data-control="delete-item" | ||
data-item-id="{{ $item->getKey() }}" | ||
data-item-selector="#{{ $this->getId('item-'.$index) }}" | ||
data-confirm-message="@lang('admin::lang.alert_warning_confirm')" | ||
><i class="fa fa-trash-alt"></i></a> | ||
</div> | ||
@endunless | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.