Skip to content

Commit

Permalink
Update phpCS.yml (#41)
Browse files Browse the repository at this point in the history
* Update phpCS.yml

* fix formatting
  • Loading branch information
mprins authored Aug 22, 2024
1 parent e5bcff1 commit 3c71dab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
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 <mprins@users.sf.net>
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

0 comments on commit 3c71dab

Please sign in to comment.