/home/vianto5/heredit.mx/wp-content/plugins/code-snippets/php/Migration/Export
NameSizeModeActions
Download_Code.php67920644editdlrm
Export.php17820644editdlrm
Export_Code.php42450644editdlrm
Export_JSON.php10320644editdlrm
Edit: /home/vianto5/heredit.mx/wp-content/plugins/code-snippets/php/Migration/Export/Export_JSON.php (1032B)
Snippets as JSON object. */ public function generate_export(): array { $snippets = []; foreach ( $this->get_snippets_list() as $snippet ) { $snippets[] = array_map( function ( $value ) { return is_string( $value ) ? str_replace( "\r\n", "\n", $value ) : $value; }, $snippet->get_modified_fields() ); } return [ 'generator' => 'Code Snippets v' . PLUGIN_VERSION, 'date_created' => gmdate( 'Y-m-d H:i' ), 'snippets' => $snippets, ]; } }