Function add_rml_meta_box
Add a visible content to the folder details dialog.
Example:
Returns: boolean
Located at api/meta.php
Adding a new tab "Physical" group to meta dialog (or RML/User/Settings/Groups for user settings)
add_filter("RML/Folder/Meta/Groups", function($groups) { $groups["physical"] = __("Physical"); return $groups; });
Returns: boolean
Located at api/meta.php
Parameters summary
string |
$name |
Unique name for this meta box |
IMetadata |
$obj |
The object which implements IMetadata |
boolean |
$hasScripts = false |
boolean Load the resources if exists |
integer |
$priority = 10 |
Priority for actions and filters |
string |
$contentGroup = "" |
The tab group for the meta settings, see example for adding a new group |