-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into create-migration
- Loading branch information
Showing
69 changed files
with
603 additions
and
282 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ No matter how large or small your project is, Winter provides a rich development | |
[![Tests](https://img.shields.io/github/actions/workflow/status/wintercms/winter/tests.yml?branch=develop&label=tests&style=flat-square)](https://github.com/wintercms/winter/actions) | ||
[![License](https://img.shields.io/github/license/wintercms/winter?label=open%20source&style=flat-square)](https://packagist.org/packages/wintercms/winter) | ||
[![Discord](https://img.shields.io/discord/816852513684193281?label=discord&style=flat-square)](https://discord.gg/D5MFSPH6Ux) | ||
[![RINGER](https://www.ringerhq.com/images/get-support-on-ringer.svg)](https://www.ringerhq.com/i/wintercms/winter) | ||
|
||
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/wintercms/winter) | ||
|
||
|
@@ -45,7 +46,7 @@ The best place to learn Winter is by [reading the documentation](https://winterc | |
|
||
Winter was forked from October CMS in March 2021 due to a difference in open source management philosophies between the core maintainer team and the two founders of October. | ||
|
||
The development of Winter is lead by [Luke Towers](https://luketowers.ca/), along with many wonderful people that dedicate their time to help support and grow the community. | ||
The development of Winter is lead by [Luke Towers](https://luketowers.ca/), along with many wonderful people that dedicate their time to help support and grow the community. The [Frostbyte Foundation](mailto:[email protected]) provides an organisational backing for the project and the continued development of Winter, its plugins and themes and its ecosystem. | ||
|
||
<table> | ||
<tr> | ||
|
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,25 @@ | ||
.global-notice { | ||
position: sticky; | ||
top: 0; | ||
display: flex; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
gap: 0.5em; | ||
justify-content: space-between; | ||
z-index: 10500; | ||
background: #ab2a1c; | ||
color: #FFF; | ||
padding: 0.5em 0.75em; | ||
|
||
.notice-icon { | ||
font-size: 1.5em; | ||
vertical-align: bottom; | ||
display: inline-block; | ||
margin-right: .25em; | ||
} | ||
|
||
.notice-text { | ||
display: inline-block; | ||
vertical-align:middle; | ||
} | ||
} |
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
Large diffs are not rendered by default.
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
6 changes: 6 additions & 0 deletions
6
modules/backend/behaviors/relationcontroller/partials/_button_refresh.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<button | ||
class="btn btn-sm btn-secondary wn-icon-arrows-rotate" | ||
data-request="onRelationButtonRefresh" | ||
data-stripe-load-indicator> | ||
<?= e(trans($text)) ?> | ||
</button> |
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
11 changes: 11 additions & 0 deletions
11
modules/backend/behaviors/relationcontroller/partials/_manage_form_footer_create.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<button | ||
type="submit" | ||
class="btn btn-primary"> | ||
<?= e(trans('backend::lang.relation.create')) ?> | ||
</button> | ||
<button | ||
type="button" | ||
class="btn btn-default" | ||
data-dismiss="popup"> | ||
<?= e(trans('backend::lang.relation.cancel')) ?> | ||
</button> |
20 changes: 20 additions & 0 deletions
20
modules/backend/behaviors/relationcontroller/partials/_manage_form_footer_update.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php if ($this->readOnly): ?> | ||
<button | ||
type="button" | ||
class="btn btn-default" | ||
data-dismiss="popup"> | ||
<?= e(trans('backend::lang.relation.close')) ?> | ||
</button> | ||
<?php else: ?> | ||
<button | ||
type="submit" | ||
class="btn btn-primary"> | ||
<?= e(trans('backend::lang.relation.update')) ?> | ||
</button> | ||
<button | ||
type="button" | ||
class="btn btn-default" | ||
data-dismiss="popup"> | ||
<?= e(trans('backend::lang.relation.cancel')) ?> | ||
</button> | ||
<?php endif ?> |
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
17 changes: 17 additions & 0 deletions
17
modules/backend/behaviors/relationcontroller/partials/_manage_list_footer.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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php if ($relationManageWidget->showCheckboxes): ?> | ||
<button | ||
type="button" | ||
class="btn btn-primary" | ||
data-request="onRelationManageAdd" | ||
data-dismiss="popup" | ||
data-request-success="$.wn.relationBehavior.changed('<?= e($relationField) ?>', 'added')" | ||
data-stripe-load-indicator> | ||
<?= e(trans('backend::lang.relation.add_selected')) ?> | ||
</button> | ||
<?php endif ?> | ||
<button | ||
type="button" | ||
class="btn btn-default" | ||
data-dismiss="popup"> | ||
<?= e(trans('backend::lang.relation.cancel')) ?> | ||
</button> |
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: 18 additions & 0 deletions
18
modules/backend/behaviors/relationcontroller/partials/_manage_pivot_footer.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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php if ($relationManageWidget->showCheckboxes): ?> | ||
<button | ||
type="button" | ||
class="btn btn-primary" | ||
data-control="popup" | ||
data-handler="onRelationManageAddPivot" | ||
data-size="huge" | ||
data-dismiss="popup" | ||
data-stripe-load-indicator> | ||
<?= e(trans('backend::lang.relation.add_selected')) ?> | ||
</button> | ||
<?php endif ?> | ||
<button | ||
type="button" | ||
class="btn btn-default" | ||
data-dismiss="popup"> | ||
<?= e(trans('backend::lang.relation.cancel')) ?> | ||
</button> |
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
20 changes: 20 additions & 0 deletions
20
modules/backend/behaviors/relationcontroller/partials/_pivot_form_footer.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php if ($this->readOnly): ?> | ||
<button | ||
type="button" | ||
class="btn btn-default" | ||
data-dismiss="popup"> | ||
<?= e(trans('backend::lang.relation.close')) ?> | ||
</button> | ||
<?php else: ?> | ||
<button | ||
type="submit" | ||
class="btn btn-primary"> | ||
<?= e(trans('backend::lang.relation.update')) ?> | ||
</button> | ||
<button | ||
type="button" | ||
class="btn btn-default" | ||
data-dismiss="popup"> | ||
<?= e(trans('backend::lang.relation.cancel')) ?> | ||
</button> | ||
<?php endif ?> |
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
Oops, something went wrong.