dd / evolutioncms-plugins-ddmanagerfavorites
There is no license information available for the latest version (1.0.0) of this package.
Manager left-tree tab with favorite file/folder paths.
Package info
github.com/DivanDesign/EvolutionCMS.plugins.ddManagerFavorites
Language:JavaScript
Type:modxevo-plugin
pkg:composer/dd/evolutioncms-plugins-ddmanagerfavorites
1.0.0
2026-08-06 13:32 UTC
Requires
- php: >=7.4.0
- dd/evolutioncms-libraries-ddtools: >=0.69.0
This package is auto-updated.
Last update: 2026-08-06 13:46:30 UTC
README
Manager plugin: favorite files/folders tab in the left tree.
- Plugin creates a tab in the Manager left menu, next to the documents tree.
- Add any files/folders to favorites.
- List is automatically sorted alphabetically.
- Click opens file edit (with focus on textarea) or folder view.
- Favorites are stored in the browser (in
localStorage), to avoid overloading the database (write in the support chat, if you prefer the database, we will think about this).
Requires
- PHP >= 7.4
- (MODX)EvolutionCMS >= 1.4
- (MODX)EvolutionCMS.libraries.ddTools >= 0.69
Installation
Using (MODX)EvolutionCMS.libraries.ddInstaller
Just run the following PHP code in your sources or Console:
// Include (MODX)EvolutionCMS.libraries.ddInstaller require_once( $modx->getConfig('base_path') . 'assets/libs/ddInstaller/require.php' ); // Install (MODX)EvolutionCMS.plugins.ddManagerFavorites \DDInstaller::install([ 'url' => 'https://github.com/DivanDesign/EvolutionCMS.plugins.ddManagerFavorites', ]);
- If
ddManagerFavoritesis not exists on your site,ddInstallerwill just install the plugin. - If
ddManagerFavoritesis already exists on your site,ddInstallerwill check it version and update it if needed. - After installation, set the system event
OnManagerTreeRenderin the plugin settings (ddInstallerdoes not yet support events).
Manually
1. Elements → Plugins: Create a new plugin with the following data
- Plugin name:
ddManagerFavorites. - Description:
<b>1.0</b> Manager favorite files/folders tab.. - Category:
Core → Manager. - Parse DocBlock:
no. - Plugin code (php): Insert content of the
ddManagerFavorites_plugin.phpfile from the archive. - System Events:
OnManagerTreeRender.
2. Elements → Manage Files
- Create a new folder
assets/plugins/ddManagerFavorites/. - Extract the archive to the folder (except
ddManagerFavorites_plugin.php).