Skip to content
This repository has been archived by the owner on Jul 9, 2020. It is now read-only.

nim4n136/custom-actions-button

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Custom Actions Button

StyleCI

Screenshots

custom-action-button

Installation

composer require nim4n/custom-actions-button

Configuration

In the configuration section of the file config/admin.php extension, add the configuration of this extension.

  'extensions' => [

      'custom-actions-button' => [

          "enable" => true,

          "view" => [
              "label" => "Detail",
              "icon"  => "fa fa-eye",
              "class" => "btn btn-sm btn-info"
          ],

          "edit" => [
              "label" => "Edit",
              "icon"  => "fa fa-edit",
              "class" => "btn btn-sm btn-warning"
          ],

          "delete" => [
              "label" => "",
              "icon"  => "fa fa-trash",
              "class" => "btn btn-sm btn-danger"
          ]

      ]

  ],

License

Licensed under The MIT License (MIT).