Skip to content
  • Kirby CMS Plugins
  • Discover
  • Search
  • Developers
  • New plugins
  • Recently updated
  • Most starred
  • Topics
  • Types
  • Free Plugins
  • Paid Plugins
  • Kirby 5
  • Kirby 4

  • Submit a plugin
  • getkirby.com
  • Blocks
  • Blueprints
  • Cache drivers
  • CLI commands
  • Collection methods
  • Controllers
  • Core Components
  • CSSs
  • Field methods
  • File methods
  • Helpers
  • Hooks
  • Kirbytags
  • Page methods
  • Page models
  • Pages methods
  • Panel areas
  • Panel components
  • Panel dialogs
  • Panel dropdowns
  • Panel fields
  • Panel Field Previews
  • Panel sections
  • Panel views
  • Panel view buttons
  • Plugin extensions
  • Routes
  • Site methods
  • Snippets
  • Templates
  • Template engines
  • Textarea buttons
  • Thumb drivers
  • User methods
  • Users methods
  • View buttons
  • Site methods

    • 
      return [
          'bnomei.securityheaders.headers' => [
              'X-Frame-Options'        => 'SAMEORIGIN',
              'X-XSS-Protection'       => '1; mode=block',
              'X-Content-Type-Options' => 'nosniff',
              ...
          ]
      ];
      Content Security Policy Simplify the content security policy headers setup for your website K5 K4 K3
    • Debug Bar PHP Debug Bar for KirbyCMS K4 K3
    • Menu This plugin lets you build and render structured menues with a variety of features. K4
    • Meta All-in-one solution to all of your SEO/OpenGraph/JSON-LD/sitemap.xml needs. K3
    • $site->log('My message', 'error');
      Log A little log utility (KLogger wrapper) K4 K3
    • $site->holidays('France', 2022);
      Yasumi Get a list of official public holidays and the dates they fall on for any country and year. K4 K3
    • $datelist = $site->recurr(
          '2022-09-10 20:00:00',
          '2022-09-11 02:00:00',
          'WEEKLY',
          ['WE', 'TH', 'FR'],
          '2022-10-11'
      );
      Recurr This plugin integrates the Recurr library to make it easier to work with repeating dates (like events on a calender). K4 K3
    • <?php foreach ($notifications as $notification): ?>
        <li>
          <?= $notification
            ->track()
            ->toReference()
            ->title() ?>
        </li>
      <?php endforeach ?>
      Tracker Tracker is a plugin to track content changes and create panel logs or front-end notifications in member areas. K3