PluginProbe ʕ •ᴥ•ʔ
WP All Import – Drag & Drop Import for CSV, XML, Excel & Google Sheets / 3.2.2
WP All Import – Drag & Drop Import for CSV, XML, Excel & Google Sheets v3.2.2
4.1.1 3.9.5 3.9.6 4.0.0 4.0.1 4.1.0 trunk 2.12 2.13 2.14 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 3.4.9 3.5.0 3.5.1 3.5.2 3.5.3 3.5.4 3.5.5 3.5.6 3.5.7 3.5.8 3.5.9 3.6.0 3.6.1 3.6.2 3.6.3 3.6.4 3.6.5 3.6.6 3.6.7 3.6.8 3.6.9 3.7.0 3.7.1 3.7.2 3.7.3 3.7.3-beta-1.0 3.7.4 3.7.4-beta-1.0 3.7.5 3.7.6 3.7.7 3.7.8 3.7.9 3.8.0 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4
wp-all-import / helpers / backward.php
wp-all-import / helpers Last commit date
backward.php 11 years ago get_file_curl.php 11 years ago get_taxonomies_by_object_type.php 11 years ago import_custom_meta_box.php 11 years ago is_exists_term.php 11 years ago pmxi_ctx_mapping.php 11 years ago pmxi_findDuplicates.php 11 years ago pmxi_functions.php 11 years ago pmxi_insert_attachment.php 11 years ago pmxi_insert_post.php 11 years ago pmxi_json_to_xml.php 11 years ago pmxi_recursion_taxes.php 11 years ago reverse_taxonomies_html.php 11 years ago str_getcsv.php 11 years ago wp_delete_attachments.php 11 years ago wp_redirect_or_javascript.php 11 years ago
backward.php
40 lines
1 <?php
2 /**
3 * Contains function which were introduced in late wordpress versions
4 */
5
6 if ( ! function_exists('is_network_admin')):
7 /**
8 * Whether the current request is for a network admin screen /wp-admin/network/
9 *
10 * Does not inform on whether the user is a network admin! Use capability checks to
11 * tell if the user should be accessing a section or not.
12 *
13 * @since 3.1.0
14 *
15 * @return bool True if inside WordPress network administration pages.
16 */
17 function is_network_admin() {
18 if ( defined( 'WP_NETWORK_ADMIN' ) )
19 return WP_NETWORK_ADMIN;
20 return false;
21 }
22 endif;
23
24 if ( ! function_exists('is_user_admin')):
25 /**
26 * Whether the current request is for a user admin screen /wp-admin/user/
27 *
28 * Does not inform on whether the user is an admin! Use capability checks to
29 * tell if the user should be accessing a section or not.
30 *
31 * @since 3.1.0
32 *
33 * @return bool True if inside WordPress user administration pages.
34 */
35 function is_user_admin() {
36 if ( defined( 'WP_USER_ADMIN' ) )
37 return WP_USER_ADMIN;
38 return false;
39 }
40 endif;