-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* init * wip * Fix styling * Fix styling * wip * wip package * added plugin * fix translations booting * Fix styling * init * wip * Fix styling * Fix styling * wip * wip package * added plugin * Fix styling * Fix styling * rename Thema ->Topic * wip cleaning * Fix styling * wip cleanup * Fix styling * wip press-wiki package --------- Co-authored-by: Kim-the-Diamond <[email protected]>
- Loading branch information
1 parent
af9db2f
commit 38c5511
Showing
63 changed files
with
1,033 additions
and
1,157 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ jobs: | |
- user | ||
- user-device | ||
- user-session | ||
- press-wiki | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
<?php | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Moox Configuration | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This configuration file uses translatable strings. If you want to | ||
| translate the strings, you can do so in the language files | ||
| published from moox_core. Example: | ||
| | ||
| 'trans//core::core.all', | ||
| loads from common.php | ||
| outputs 'All' | ||
| | ||
*/ | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Resources | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following configuration is done per Filament resource. | ||
| | ||
*/ | ||
|
||
'resources' => [ | ||
'topic' => [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Title | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The translatable title of the Resource in singular and plural. | ||
| | ||
*/ | ||
|
||
'single' => 'trans//press-wiki::translations.topic', | ||
'plural' => 'trans//press-wiki::translations.topics', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Tabs | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Define the tabs for the Expiry table. They are optional, but | ||
| pretty awesome to filter the table by certain values. | ||
| You may simply do a 'tabs' => [], to disable them. | ||
| | ||
*/ | ||
|
||
'tabs' => [ | ||
'all' => [ | ||
'label' => 'trans//core::core.all', | ||
'icon' => 'gmdi-filter-list', | ||
'query' => [], | ||
], | ||
/* | ||
'error' => [ | ||
'label' => 'trans//core::core.error', | ||
'icon' => 'gmdi-text-snippet', | ||
'query' => [ | ||
[ | ||
'field' => 'subject_type', | ||
'operator' => '=', | ||
'value' => 'Error', | ||
], | ||
], | ||
], | ||
*/ | ||
], | ||
], | ||
'wiki' => [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Title | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The translatable title of the Resource in singular and plural. | ||
| | ||
*/ | ||
|
||
'single' => 'trans//press-wiki::translations.wiki', | ||
'plural' => 'trans//press-wiki::translations.wikis', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Tabs | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Define the tabs for the Expiry table. They are optional, but | ||
| pretty awesome to filter the table by certain values. | ||
| You may simply do a 'tabs' => [], to disable them. | ||
| | ||
*/ | ||
|
||
'tabs' => [ | ||
'all' => [ | ||
'label' => 'trans//core::core.all', | ||
'icon' => 'gmdi-filter-list', | ||
'query' => [], | ||
], | ||
|
||
'published' => [ | ||
'label' => 'trans//core::core.published', | ||
'icon' => 'gmdi-text-snippet', | ||
'query' => [ | ||
[ | ||
'field' => 'post_status', | ||
'operator' => '=', | ||
'value' => 'publish', | ||
], | ||
], | ||
], | ||
'drafts' => [ | ||
'label' => 'trans//core::core.draft', | ||
'icon' => 'gmdi-text-snippet', | ||
'query' => [ | ||
[ | ||
'field' => 'post_status', | ||
'operator' => '=', | ||
'value' => 'draft', | ||
], | ||
], | ||
], | ||
'trash' => [ | ||
'label' => 'trans//core::core.trash', | ||
'icon' => 'gmdi-text-snippet', | ||
'query' => [ | ||
[ | ||
'field' => 'post_status', | ||
'operator' => '=', | ||
'value' => 'trash', | ||
], | ||
], | ||
], | ||
/* | ||
'error' => [ | ||
'label' => 'trans//core::core.error', | ||
'icon' => 'gmdi-text-snippet', | ||
'query' => [ | ||
[ | ||
'field' => 'subject_type', | ||
'operator' => '=', | ||
'value' => 'Error', | ||
], | ||
], | ||
], | ||
*/ | ||
], | ||
], | ||
], | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Navigation Group | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The translatable title of the navigation group in the | ||
| Filament Admin Panel. Instead of a translatable | ||
| string, you may also use a simple string. | ||
| | ||
*/ | ||
|
||
'temp_navigation_group' => 'trans//press-wiki::translations.wiki', | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| PressWiki - Navigation Sort | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value is the sort order of the navigation item in the | ||
| Filament Admin Panel. If you use a bunch of Moox | ||
| plugins, everything should be in order. | ||
| | ||
*/ | ||
|
||
'temp_navigation_sort' => 999, | ||
|
||
]; |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [mooxphp] | ||
patreon: # Replace with a single Patreon username | ||
open_collective: # Replace with a single Open Collective username | ||
ko_fi: # Replace with a single Ko-fi username | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
liberapay: # Replace with a single Liberapay username | ||
issuehunt: # Replace with a single IssueHunt username | ||
otechie: # Replace with a single Otechie username | ||
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry | ||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] |
Oops, something went wrong.