Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update phpCS.yml #41

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/phpCS.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: PHP Code Style

on: [ push, workflow_dispatch ]
on: [ push, workflow_dispatch, pull_request ]

jobs:
phpcs:
Expand Down
11 changes: 9 additions & 2 deletions action.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

use dokuwiki\Extension\ActionPlugin;
use dokuwiki\Extension\EventHandler;
use dokuwiki\Extension\Event;
use dokuwiki\Extension\EventHandler;

/*
* Copyright (c) 2011 Mark C. Prins <[email protected]>
Expand All @@ -19,6 +19,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

/**
* DokuWiki Plugin geotag (Action Component).
*
Expand Down Expand Up @@ -108,7 +109,13 @@ final public function handleMetaheaderOutput(Event $event): void
*/
final public function insertButton(Event $event, array $param): void
{
$event->data [] = ['type' => 'format', 'title' => $this->getLang('toolbar_desc'), 'icon' => '../../plugins/geotag/images/geotag.png', 'open' => '{{geotag>lat:', 'sample' => '52.2345', 'close' => ', lon:7.521, alt: , placename: , country: , region: }}'];
$event->data [] = [
'type' => 'format',
'title' => $this->getLang('toolbar_desc'),
'icon' => '../../plugins/geotag/images/geotag.png',
'open' => '{{geotag>lat:', 'sample' => '52.2345',
'close' => ', lon:7.521, alt: , placename: , country: , region: }}'
];
}

/**
Expand Down