Download the PHP package lekoala/silverstripe-cms-actions without Composer

On this page you can find all versions of the php package lekoala/silverstripe-cms-actions. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package silverstripe-cms-actions

SilverStripe Cms Actions module

Build Status Build Status scrutinizer Code coverage

Latest Stable Version Total Downloads License Monthly Downloads Daily Downloads

Intro

For those of you missing betterbuttons :-) Because let's face it, adding custom actions in SilverStripe is a real pain.

How does it work ?

Well it's actually quite simple. First of all, we improve the GridFieldItemRequest with our ActionsGridFieldItemRequest. This is heavily inspired by betterbuttons module. Thanks to this extension, our actions defined in getCMSActions will appear properly.

Then, we forward our requests to the model (a button declared on Member call the ItemRequest handler which forwards the action to the Member model).

We can declare things in two functions:

LeftAndMain support

This module is mainly targeted at dealing with actions on regular DataObjects. However, in order to support actions on pages, the ActionsGridFieldItemRequest is also applied on LeftAndMain. Therefore, actions defined on pages should work properly as well.

Add your buttons

Actions

Simply use getCMSActions on your DataObjects and add new buttons for your DataObjects! For this, simply push new actions. The CustomAction class is responsible of calling the action defined on your DataObject.

In the following example, we call doCustomAction. The return string is displayed as a notification. If not return string is specified, we display a generic message "Action {action} done on {record}".

If it throws an exception or return a false bool, it will show an error message

CustomActions are buttons and submitted through ajax. If it changes the state of your record you may need to refresh the UI, but be careful of not losing any unsaved data.

You can also redirect to a custom URL (eg: to the main list) after the action

Sometimes, you don't want buttons, but links. Use CustomLink instead. This is useful to, say, download an excel report or a pdf file.

Please note that are we use a die pattern that is not very clean, but you can very well return a HTTPResponse object instead.

CustomLink use by default ajax navigation. You can use setNoAjax(true) to prevent this. CustomLink can open links in a new window. You can use setNewWindow(true) to enable this. CustomLink calls by default an action on the model matching its name. But really you can point it to anything, even an external link using setLink('https//www.silverstripe.org').

Confirm actions

If an action is potentially dangerous or avoid misclicks, you can set a confirmation message using setConfirmation('Are you sure') or simply pass true for a generic message.

Decoration & Placement

You can set icon. See SilverStripeIcons class for available icons. We use base silverstripe icons.

The native setIcon from SilverStripe is also supported for FormAction.

You can also put buttons into a drop-up menu.

Last icon

You can use an unlimited set of icons using last-icon.

Simply make sure you included the required javascript (the css is already included by default as it is limited and has no side-effect):

or with yml

And add the icon of your choice:

You can pass additional parameters or pass directly an array.

Grouping

Buttons can be grouped in the same manner as the "Save"/"Save and close" usually are when enclosed in ActionButtonsGroup container.

Utils

Declare getCMSUtils or use updateCMSUtils in your extensions. These utilities will appear next to the tabs. They are ideal to provide some extra information or navigation. I've used these to add shortcuts, timers, dropdowns navs...

Save and close

Add a default "save and close" or "create and close" button to quickly add DataObjects.

This feature can be disabled with the enable_save_close config flag

Delete action is on the right

Really I don't know who thought that having delete button next to a save button was a good idea, but I'd rather have it on the right end side.

This feature can be disabled with the enable_delete_right config flag

Prev/next support

SilverStripe 4.4 introduced a more refined UI for prev/next records. However, it only allows navigation and does not support "save and next" or "previous and next" which is useful when you edit records in a row.

This feature can be disabled with the enable_save_prev_next config flag

You can also use the HasPrevNextUtils trait to add navigation in your utils as well.

Configure UI options per record

Instead of using the global config flags, you can configure the form based on the record being edited.

Your DataObject needs to implement getCMSActionsOptions. This function should return an array with the following keys:

This will be use instead of the default global options if provided.

Custom prev/next record

By implementing PrevRecord and NextRecord and your DataObject, you can override the default logic provided by SilverStripe.

Prev/next records can be tricky to manage, if you have grid state issues, using nested gridfields and stuff like that. Using PrevRecord and NextRecord provide a simple mean without dealing with state problems.

Adding actions to a GridField row

You can create new row actions by extending the GridFieldRowButton

All actions will be stored in a new "Actions" column that supports multiple actions. This can be used, for example, to download files, like invoices, etc directly from a GridField.

For example, you can do this:

And use it in your ModelAdmin like so:

Adding links to GridField

If actions are not your cup of tea, you can also add links to your GridField.

Again, it will be added to the Actions column.

This acts like a CustomLink describe above, so if we go back to our report example, we get this:

For security reasons, the action MUST be declared in getCMSActions. Failing to do so will return a helpful error message. If you do not want to display the button in the detail form, simply set a d-none on it:

Adding buttons to a whole GridField

This is done using GridFieldTableButton

This class can then be added as a regular GridField component

Adding actions in getCMSFields

If you have a lot of actions, sometimes it might make more sense to add it to your cms fields. I've used this to provide template files for instance that needs to be uploaded.

This is done using the CmsInlineFormAction class. Please note that the doCustomAction function must be declared on your controller, not on the model.

This is due to the fact that we are not submitting the form, therefore we are not processing the record with our ActionsGridFieldItemRequest.

In your admin class

Posting with inline actions

You can also post the whole form to another location with CmsInlineFormAction.

Simply do this

And add to your admin class

This will trigger the Save action (through ajax) do your new endpoint, allowing custom behaviour and feedback messages.

Show messages instead of actions

If an action is not available/visible, the user may wonder why. Obviously you can display a disabled button, but you can also display a message instead of the button. This can be done like so:

The bb-align class ensure the text is properly aligned with the buttons.

Extensions support

If your extensions depend on this module, you can play with DataObject::onBeforeUpdateCMSActions and DataObject::onAfterUpdateCMSActions extension hook to add your own buttons. This is called after all buttons have been defined.

See for instance how it's done in my softdelete module.

Tab tracking

This extension will also track the active tab when you call save and next / prev and next. This allows editing stuff in a row and keep the same tab.

When clicking on the main tabs, it will also update the url. This way, when you reload the page, the good tab will reopen.

This also allows targeting specific pages with a given tab with links.

Profile and LeftAndMain extension support

Since we apply our extension on SilverStripe\Admin\LeftAndMain actions declared in updateCMSActions/getCMSActions are visible in the profile for example.

The issue here is that the updateItemEditForm is never called (this is only called by GridFieldDetailForm_ItemRequest, so when you are in a GridField item... in ModelAdmin for instance).

For instance, this means that you actions are displayed before the 'save' button provided by the Profile controller. Currently, this module fixes this with a bit of css.

Progressive actions

Since version 1.2, this module supports progressive actions. Progressive actions are buttons that use a progress bar to display what is happening. Under the hood, it translates to multiple ajax calls to the same handler function and passing the following post parameters:

Progressive actions are supported for GridFieldTableButton and CustomLink.

Here is a sample implementation. The action needs to return an array with the following keys:

Modal action

What if you need to ask some input from your user when clicking a button ? Like a 'Send Message' button which would display a nice textarea ?

This is covered as part of another module: https://github.com/lekoala/silverstripe-pure-modal

It requires a modal to be displayed (and modals are a bit of a pain to setup in SilverStripe 4, so I created a module to make that much easier). When using both modules it's easy to have actions that open a modal.

Collapsing icons

The icons collapse in mobile view. If you have your own buttons, you can add the btn-mobile-collapse class so that they do the same. This will be added by default if you set an icon on your buttons.

You can also hide buttons completely with btn-mobile-hidden

Sponsored by

This module is kindly sponsored by RESTRUCT

Compatibility

Tested with 4.10 but should work on any ^4.4 projects

Maintainer

LeKoala - [email protected]


All versions of silverstripe-cms-actions with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0
silverstripe/recipe-plugin Version ^1 || ^2
silverstripe/vendor-plugin Version ^1 || ^2
silverstripe/framework Version ^4.4 || ^5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package lekoala/silverstripe-cms-actions contains the following files

Loading the files please wait ....