-
Notifications
You must be signed in to change notification settings - Fork 40
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 #300 from FriendsOfCake/cake-5-update
Update for Cake 5
- Loading branch information
Showing
30 changed files
with
207 additions
and
174 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<files psalm-version="4.x-dev@"> | ||
<file src="src/View/CrudView.php"> | ||
<UndefinedDocblockClass occurrences="3"> | ||
<code>$this->AssetCompress</code> | ||
<code>$this->AssetCompress</code> | ||
<code>$this->AssetCompress</code> | ||
</UndefinedDocblockClass> | ||
</file> | ||
<file src="src/View/Widget/DateTimeWidget.php"> | ||
<PossiblyNullArrayAccess occurrences="2"> | ||
<code>$data['name']</code> | ||
<code>$data['templateVars']</code> | ||
</PossiblyNullArrayAccess> | ||
</file> | ||
</files> |
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,39 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace CrudView; | ||
|
||
use Cake\Core\BasePlugin; | ||
|
||
/** | ||
* Plugin class for CrudView | ||
*/ | ||
class CrudViewPlugin extends BasePlugin | ||
{ | ||
/** | ||
* Plugin name. | ||
* | ||
* @var string|null | ||
*/ | ||
protected ?string $name = 'CrudView'; | ||
/** | ||
* Do bootstrapping or not | ||
* | ||
* @var bool | ||
*/ | ||
protected bool $bootstrapEnabled = false; | ||
|
||
/** | ||
* Console middleware | ||
* | ||
* @var bool | ||
*/ | ||
protected bool $consoleEnabled = false; | ||
|
||
/** | ||
* Load routes or not | ||
* | ||
* @var bool | ||
*/ | ||
protected bool $routesEnabled = false; | ||
} |
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.