-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fb_img_preview_onhover' of https://github.com/zms-publi…
…shing/ZMS into fb_img_preview_onhover
- Loading branch information
Showing
9 changed files
with
18,096 additions
and
50 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
Products/zms/conf/metacmd_manager/manage_addMultiUpload/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
class manage_addMultiUpload: | ||
""" | ||
python-representation of manage_addMultiUpload | ||
""" | ||
|
||
# Acquired | ||
acquired = 0 | ||
|
||
# Action | ||
action = "%smanage_executeMetacmd?id=manage_addMultiUpload" | ||
|
||
# Description | ||
description = "" | ||
|
||
# Execution | ||
execution = False | ||
|
||
# Icon_clazz | ||
icon_clazz = "fas fa-upload text-danger" | ||
|
||
# Id | ||
id = "manage_addMultiUpload" | ||
|
||
# Meta_types | ||
meta_types = ["ZMSDocument" | ||
,"ZMSFolder" | ||
,"ZMS"] | ||
|
||
# Name | ||
name = "Multi-Upload" | ||
|
||
# Nodes | ||
nodes = "{$}" | ||
|
||
# Package | ||
package = "" | ||
|
||
# Revision | ||
revision = "5.0.0" | ||
|
||
# Roles | ||
roles = ["ZMSAdministrator" | ||
,"ZMSEditor" | ||
,"ZMSAuthor"] | ||
|
||
# Stereotype | ||
stereotype = "insert" | ||
|
||
# Title | ||
title = "Upload via Multi-Selection of Files" | ||
|
||
# Impl | ||
class Impl: | ||
manage_addmultiupload = {"id":"manage_addMultiUpload" | ||
,"type":"External Method"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.