-
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.
translated warning message, added link to docu
- Loading branch information
1 parent
023c316
commit 5b9de90
Showing
4 changed files
with
41 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the MetaFieldsBundle for Kimai 2. | ||
* All rights reserved by Kevin Papst (www.kevinpapst.de). | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace KimaiPlugin\CustomCSSBundle\EventSubscriber; | ||
|
||
use App\Event\PageActionsEvent; | ||
use App\EventSubscriber\Actions\AbstractActionsSubscriber; | ||
use KimaiPlugin\MetaFieldsBundle\MetaFieldsRegistry; | ||
|
||
final class CustomCssActionSubscriber extends AbstractActionsSubscriber | ||
{ | ||
public static function getActionName(): string | ||
{ | ||
return 'custom_css'; | ||
} | ||
|
||
public function onActions(PageActionsEvent $event): void | ||
{ | ||
$event->addHelp($this->documentationLink('plugin-custom-css.html')); | ||
} | ||
} |
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