-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from PortableStudios/feature/revisionable
Feature/revisionable
- Loading branch information
Showing
39 changed files
with
1,261 additions
and
593 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
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
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
src/Filament/Resources/AbstractContentResource/Pages/AbstractContentResourceRevisions.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 @@ | ||
<?php | ||
|
||
namespace Portable\FilaCms\Filament\Resources\AbstractContentResource\Pages; | ||
|
||
use Portable\FilaCms\Filament\Resources\AbstractContentResource; | ||
use Mansoor\FilamentVersionable\RevisionsPage; | ||
|
||
class AbstractContentResourceRevisions extends RevisionsPage | ||
{ | ||
protected static string $resource = AbstractContentResource::class; | ||
} |
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
66 changes: 0 additions & 66 deletions
66
src/Filament/Resources/AbstractContentResource/RelationManagers/RevisionsRelationManager.php
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
11 changes: 11 additions & 0 deletions
11
src/Filament/Resources/AuthorResource/Pages/AuthorRevisions.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 @@ | ||
<?php | ||
|
||
namespace Portable\FilaCms\Filament\Resources\AuthorResource\Pages; | ||
|
||
use Portable\FilaCms\Filament\Resources\AuthorResource; | ||
use Mansoor\FilamentVersionable\RevisionsPage; | ||
|
||
class AuthorRevisions extends RevisionsPage | ||
{ | ||
protected static string $resource = AuthorResource::class; | ||
} |
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
11 changes: 11 additions & 0 deletions
11
src/Filament/Resources/PageResource/Pages/PageRevisions.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 @@ | ||
<?php | ||
|
||
namespace Portable\FilaCms\Filament\Resources\PageResource\Pages; | ||
|
||
use Portable\FilaCms\Filament\Resources\AbstractContentResource\Pages\AbstractContentResourceRevisions; | ||
use Portable\FilaCms\Filament\Resources\PageResource; | ||
|
||
class PageRevisions extends AbstractContentResourceRevisions | ||
{ | ||
protected static string $resource = PageResource::class; | ||
} |
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
11 changes: 11 additions & 0 deletions
11
src/Filament/Resources/TaxonomyResource/Pages/TaxonomyRevisions.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 @@ | ||
<?php | ||
|
||
namespace Portable\FilaCms\Filament\Resources\TaxonomyResource\Pages; | ||
|
||
use Portable\FilaCms\Filament\Resources\TaxonomyResource; | ||
use Mansoor\FilamentVersionable\RevisionsPage; | ||
|
||
class TaxonomyRevisions extends RevisionsPage | ||
{ | ||
protected static string $resource = TaxonomyResource::class; | ||
} |
11 changes: 11 additions & 0 deletions
11
src/Filament/Resources/TaxonomyResource/Pages/TaxonomyTermRevisions.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 @@ | ||
<?php | ||
|
||
namespace Portable\FilaCms\Filament\Resources\TaxonomyResource\Pages; | ||
|
||
use Portable\FilaCms\Filament\Resources\TaxonomyTermResource; | ||
use Mansoor\FilamentVersionable\RevisionsPage; | ||
|
||
class TaxonomyTermRevisions extends RevisionsPage | ||
{ | ||
protected static string $resource = TaxonomyTermResource::class; | ||
} |
Oops, something went wrong.