Files
branddefense.pl/wp-content/plugins/brizy/editor/zip/archiver-interface.php
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

14 lines
287 B
PHP

<?php
interface Brizy_Editor_Zip_ArchiverInterface {
public function createZip( $posts, $fileName );
public function createFromZip( $zipPath );
public function getEditorVersion();
public function isVersionSupported($version);
public function getScreenshotType($archiveType);
}