Initial commit: WordPress wp-content (themes, plugins, languages)
- Theme: momentry (custom theme with REST API routes) - Plugins: code-snippets (contains all API proxies) - Languages: zh_TW translations - Excludes: cache, backups, uploads, logs
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Code_Snippets;
|
||||
|
||||
interface Snippet_Config_Repository_Interface {
|
||||
public function load( string $base_dir ): array;
|
||||
public function save( string $base_dir, array $active_snippets ): void;
|
||||
public function update( string $base_dir, Snippet $snippet, ?bool $remove = false ): void;
|
||||
}
|
||||
Reference in New Issue
Block a user