public static function ExportInterface::export in Hook Update Deploy Tools 7
Same name and namespace in other branches
- 8 src/ExportInterface.php \HookUpdateDeployTools\ExportInterface::export()
Exports the exportable type to a text file.
Parameters
string $export_item: The unique identifier of the thing to export, usually the machine name.
Return value
string A string showing the full uri of the exported item, or a failure message.
Throws
\Exception if it fails.
4 methods override ExportInterface::export()
- Nodes::export in src/
Nodes.php - Exports a single Node based on its nid. (Typically called from Drush).
- PageManager::export in src/
PageManager.php - Exports a single PageManager page (typically called from Drush).
- Rules::export in src/
Rules.php - Exports a single Rule when called (typically called from Drush).
- Terms::export in src/
Terms.php - Exports a single term based on its tid. (Typically called from Drush).
File
- src/
ExportInterface.php, line 24
Class
- ExportInterface
- iExport is the interface for all Hook Update Deploy Tools that export items.
Namespace
HookUpdateDeployToolsCode
public static function export($export_item);