PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / trunk
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel vtrunk
trunk 0.9.0 0.9.1 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.14 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0
wp-all-export / helpers / backward.php
wp-all-export / helpers Last commit date
backward.php 3 weeks ago get_taxonomies_by_object_type.php 3 weeks ago pmxe_filter.php 3 weeks ago pmxe_functions.php 3 weeks ago pmxe_prepare_price.php 3 weeks ago pmxe_render_xml_attributes.php 3 weeks ago pmxe_render_xml_element.php 3 weeks ago pmxe_render_xml_text.php 3 weeks ago str_getcsv.php 3 weeks ago wp_all_export_check_children_assign.php 3 weeks ago wp_all_export_clear_xss.php 3 weeks ago wp_all_export_comments_clauses.php 3 weeks ago wp_all_export_generate_export_file.php 3 weeks ago wp_all_export_get_cpt_name.php 3 weeks ago wp_all_export_get_export_format.php 3 weeks ago wp_all_export_is_compatible.php 3 weeks ago wp_all_export_parse_field_name.php 3 weeks ago wp_all_export_posts_join.php 3 weeks ago wp_all_export_posts_where.php 3 weeks ago wp_all_export_pre_user_query.php 3 weeks ago wp_all_export_prepare_template_csv.php 3 weeks ago wp_all_export_prepare_template_xml.php 3 weeks ago wp_all_export_rand_char.php 3 weeks ago wp_all_export_remove_colons.php 3 weeks ago wp_all_export_remove_source.php 3 weeks ago wp_all_export_reverse_rules_html.php 3 weeks ago wp_all_export_rmdir.php 3 weeks ago wp_all_export_secure_file.php 3 weeks ago wp_all_export_terms_clauses.php 3 weeks ago wp_all_export_url_title.php 3 weeks ago wp_all_export_write_article.php 3 weeks ago wp_redirect_or_javascript.php 3 weeks ago
backward.php
44 lines
1 <?php
2
3 // phpcs:ignoreFile WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound,WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound,WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound -- legitimate plugin prefixes (pmxe/PMXE/wpae/Wpae/wp_all_export/wpallexport/XmlExport/CdataStrategy/VariableProductTitle/Soflyy/GF_Export); Plugin Check does not honor phpcs.xml prefix declaration
4 defined( 'ABSPATH' ) || exit;
5
6 /**
7 * Contains function which were introduced in late wordpress versions
8 */
9
10 if ( ! function_exists('is_network_admin')):
11 /**
12 * Whether the current request is for a network admin screen /wp-admin/network/
13 *
14 * Does not inform on whether the user is a network admin! Use capability checks to
15 * tell if the user should be accessing a section or not.
16 *
17 * @since 3.1.0
18 *
19 * @return bool True if inside WordPress network administration pages.
20 */
21 function is_network_admin() {
22 if ( defined( 'WP_NETWORK_ADMIN' ) )
23 return WP_NETWORK_ADMIN;
24 return false;
25 }
26 endif;
27
28 if ( ! function_exists('is_user_admin')):
29 /**
30 * Whether the current request is for a user admin screen /wp-admin/user/
31 *
32 * Does not inform on whether the user is an admin! Use capability checks to
33 * tell if the user should be accessing a section or not.
34 *
35 * @since 3.1.0
36 *
37 * @return bool True if inside WordPress user administration pages.
38 */
39 function is_user_admin() {
40 if ( defined( 'WP_USER_ADMIN' ) )
41 return WP_USER_ADMIN;
42 return false;
43 }
44 endif;