forked from wpbullet/wp-menu-import-export-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrait-export.php
139 lines (118 loc) · 3.98 KB
/
trait-export.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
trait WPB_Menu_Export {
/**
* Main export functionality.
*
* Before start it will run some conditions to validate the
* passed options in the command.
*
* @since 0.1.0
* @since 0.1.1 Includes the advanced menu properties to the export file.
*
* @access private
*
* @param array $args The required arguments.
* @param array $assoc_args The flags arguments.
* @return bool|int|WP_Error Errors or file size if success.
*/
private function export( $args, $assoc_args ) {
if ( empty( $args ) && ! isset( $assoc_args['all'] ) ) {
return new WP_Error( 'menu-not-specified', 'You must specify a menu or use --all flag.' );
}
if ( ! empty( $args ) && isset( $assoc_args['all'] ) ) {
return new WP_Error( 'wrong-params-usage', 'You can\'t export all menus when specifying single menus.' );
}
if ( isset( $assoc_args['filename'] ) && ( empty( $assoc_args['filename'] ) || is_bool( $assoc_args['filename'] ) ) ) {
return new WP_Error( 'filename-empty', 'The filename flag is empty.' );
}
WP_CLI::log( 'Starting menu export process...' );
$locations = get_nav_menu_locations();
$exporter = array();
$menus = $this->get_menus( $args, $assoc_args );
if ( empty( $menus ) ) {
return new WP_Error( 'no-menus', 'There are no menus to export.' );
}
foreach ( $menus as $menu ) {
$items = wp_get_nav_menu_items( $menu );
$export_menu = array(
'location' => array_search( $menu->term_id, $locations, true ),
'name' => $menu->name,
'slug' => $menu->slug,
);
foreach ( $items as $item ) {
$export_item = array(
'slug' => $item->ID,
'parent' => $item->menu_item_parent,
'title' => $item->title,
'type' => $item->type,
'target' => $item->target,
'attr_title' => $item->attr_title,
'description' => $item->description,
'classes' => $item->classes,
'xfn' => $item->xfn,
);
switch ( $item->type ) {
case 'custom':
$export_item['url'] = $item->url;
break;
case 'post_type':
$post = get_post( $item->object_id );
$export_item['page'] = $post->post_name;
$export_item['post_type'] = $post->post_type;
break;
case 'taxonomy':
$term = get_term( $item->object_id, $item->object );
$export_item['taxonomy'] = $term->taxonomy;
$export_item['term'] = $term->term_id;
break;
}
$export_menu['items'][] = $export_item;
}
$exporter[] = $export_menu;
}
$filename = isset( $assoc_args['filename'] ) ? $assoc_args['filename'] : $this->get_default_filename();
WP_CLI::log( 'Writing to file ' . getcwd() . '/' . $filename );
return file_put_contents( $filename, json_encode( $exporter ) );
}
/**
* Get the menus to be exported.
*
* If user specify "--all" flag, it will export all menus but
* if any menu is specified will only return that object.
*
* @since 0.1.0
* @access private
*
* @param array $raw_menus The raw menus to be exported.
* @param array $assoc_args The flags arguments.
* @return array The menus to be exported.
*/
private function get_menus( $raw_menus, $assoc_args ) {
if ( empty( $raw_menus ) && isset( $assoc_args['all'] ) ) {
return wp_get_nav_menus();
}
$menus = array();
foreach ( $raw_menus as $raw_menu ) {
// $raw_menu could be a name, slug or term id for the menu(s).
$menu = wp_get_nav_menu_object( $raw_menu );
if ( ! $menu ) {
WP_CLI::log( 'Menu Export: The menu "' . $raw_menu . '" does not exist.' );
continue;
}
$menus[] = $menu;
}
return $menus;
}
/**
* Get the default filename.
* The filename structure is {hostname}-exported-menu-{todayDate}.json
*
* @since 0.1.0
* @access private
*
* @return string Default filename.
*/
private function get_default_filename() {
return wp_parse_url( home_url() )['host'] . '-exported-menu-' . date( 'Y-m-d' ) . '.json';
}
}