diff --git a/Helpers.php b/Helpers.php new file mode 100644 index 0000000..70bc58a --- /dev/null +++ b/Helpers.php @@ -0,0 +1,530 @@ + 'Pod Helpers', + 'labels' => array( 'singular_name' => 'Pod Helper' ), + 'public' => false, + 'can_export' => false, + 'show_ui' => true, + 'show_in_menu' => false, + 'query_var' => false, + 'rewrite' => false, + 'has_archive' => false, + 'hierarchical' => false, + 'supports' => array( 'title', 'author', 'revisions' ), + 'menu_icon' => 'dashicons-pods', + ); + + if ( ! pods_is_admin() ) { + $args['capability_type'] = 'pods_helper'; + } + + $args = PodsInit::object_label_fix( $args, 'post_type' ); + + register_post_type( $this->object_type, apply_filters( 'pods_internal_register_post_type_object_helper', $args ) ); + + if ( is_admin() ) { + add_filter( 'post_updated_messages', array( $this, 'setup_updated_messages' ), 10, 1 ); + + add_action( 'add_meta_boxes_' . $this->object_type, array( $this, 'edit_page_form' ) ); + + add_action( 'pods_meta_groups', array( $this, 'add_meta_boxes' ) ); + add_filter( 'get_post_metadata', array( $this, 'get_meta' ), 10, 4 ); + add_filter( 'update_post_metadata', array( $this, 'save_meta' ), 10, 4 ); + + add_action( 'pods_meta_save_pre_post__pods_helper', array( $this, 'fix_filters' ), 10, 5 ); + add_action( 'post_updated', array( $this, 'clear_cache' ), 10, 3 ); + add_action( 'delete_post', array( $this, 'clear_cache' ), 10, 1 ); + add_filter( 'post_row_actions', array( $this, 'remove_row_actions' ), 10, 2 ); + add_filter( 'bulk_actions-edit-' . $this->object_type, array( $this, 'remove_bulk_actions' ) ); + + add_filter( 'builder_layout_filter_non_layout_post_types', array( $this, 'disable_builder_layout' ) ); + } + + } + + public function disable_builder_layout( $post_types ) { + + $post_types[] = $this->object_type; + + return $post_types; + } + + /** + * Update Post Type messages + * + * @param array $messages + * + * @return array + * @since 2.0.2 + */ + public function setup_updated_messages( $messages ) { + + global $post, $post_ID; + + $post_type = get_post_type_object( $this->object_type ); + + $labels = $post_type->labels; + + $messages[ $post_type->name ] = array( + 1 => sprintf( __( '%1$s updated. %3$s', 'pods' ), $labels->singular_name, esc_url( get_permalink( $post_ID ) ), $labels->view_item ), + 2 => __( 'Custom field updated.', 'pods' ), + 3 => __( 'Custom field deleted.', 'pods' ), + 4 => sprintf( __( '%s updated.', 'pods' ), $labels->singular_name ), + /* translators: %s: date and time of the revision */ + 5 => isset( $_GET['revision'] ) ? sprintf( __( '%1$s restored to revision from %2$s', 'pods' ), $labels->singular_name, wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => sprintf( __( '%1$s published. %3$s', 'pods' ), $labels->singular_name, esc_url( get_permalink( $post_ID ) ), $labels->view_item ), + 7 => sprintf( __( '%s saved.', 'pods' ), $labels->singular_name ), + 8 => sprintf( __( '%1$s submitted. Preview %3$s', 'pods' ), $labels->singular_name, esc_url( add_query_arg( 'preview', 'true', get_permalink( $post_ID ) ) ), $labels->singular_name ), + 9 => sprintf( + __( '%1$s scheduled for: %2$s. Preview %4$s', 'pods' ), $labels->singular_name, + // translators: Publish box date format, see http://php.net/date + date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink( $post_ID ) ), $labels->singular_name + ), + 10 => sprintf( __( '%1$s draft updated. Preview %3$s', 'pods' ), $labels->singular_name, esc_url( add_query_arg( 'preview', 'true', get_permalink( $post_ID ) ) ), $labels->singular_name ), + ); + + if ( false === (boolean) $post_type->public ) { + $messages[ $post_type->name ][1] = sprintf( __( '%s updated.', 'pods' ), $labels->singular_name ); + $messages[ $post_type->name ][6] = sprintf( __( '%s published.', 'pods' ), $labels->singular_name ); + $messages[ $post_type->name ][8] = sprintf( __( '%s submitted.', 'pods' ), $labels->singular_name ); + $messages[ $post_type->name ][9] = sprintf( + __( '%1$s scheduled for: %2$s.', 'pods' ), $labels->singular_name, + // translators: Publish box date format, see http://php.net/date + date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ) + ); + $messages[ $post_type->name ][10] = sprintf( __( '%s draft updated.', 'pods' ), $labels->singular_name ); + } + + return $messages; + } + + /** + * Enqueue styles + * + * @since 2.0.0 + */ + public function admin_assets() { + + wp_enqueue_style( 'pods-styles' ); + } + + /** + * Fix filters, specifically removing balanceTags + * + * @since 2.0.1 + */ + public function fix_filters( $data, $pod = null, $id = null, $groups = null, $post = null ) { + + remove_filter( 'content_save_pre', 'balanceTags', 50 ); + } + + /** + * Remove unused row actions + * + * @since 2.0.5 + */ + public function remove_row_actions( $actions, $post ) { + + global $current_screen; + + if ( ! is_object( $current_screen ) || $this->object_type != $current_screen->post_type ) { + return $actions; + } + + if ( isset( $actions['view'] ) ) { + unset( $actions['view'] ); + } + + if ( isset( $actions['inline hide-if-no-js'] ) ) { + unset( $actions['inline hide-if-no-js'] ); + } + + // W3 Total Cache + if ( isset( $actions['pgcache_purge'] ) ) { + unset( $actions['pgcache_purge'] ); + } + + return $actions; + } + + /** + * Remove unused bulk actions + * + * @since 2.0.5 + */ + public function remove_bulk_actions( $actions ) { + + if ( isset( $actions['edit'] ) ) { + unset( $actions['edit'] ); + } + + return $actions; + } + + /** + * Clear cache on save + * + * @since 2.0.0 + */ + public function clear_cache( $data, $pod = null, $id = null, $groups = null, $post = null ) { + + $old_post = $id; + + if ( ! is_object( $id ) ) { + $old_post = null; + } + + if ( is_object( $post ) && $this->object_type != $post->post_type ) { + return; + } + + if ( ! is_array( $data ) && 0 < $data ) { + $post = $data; + $post = get_post( $post ); + } + + if ( $this->object_type == $post->object_type ) { + pods_transient_clear( 'pods_object_helpers' ); + } + } + + /** + * Change post title placeholder text + * + * @since 2.0.0 + */ + public function set_title_text( $text, $post ) { + + return __( 'Enter helper name here', 'pods' ); + } + + /** + * Edit page form + * + * @since 2.0.0 + */ + public function edit_page_form() { + + global $post_type; + + if ( $this->object_type != $post_type ) { + return; + } + + add_filter( 'enter_title_here', array( $this, 'set_title_text' ), 10, 2 ); + } + + /** + * Add meta boxes to the page + * + * @since 2.0.0 + */ + public function add_meta_boxes() { + + $pod = array( + 'name' => $this->object_type, + 'type' => 'post_type', + ); + + if ( isset( PodsMeta::$post_types[ $pod['name'] ] ) ) { + return; + } + + $fields = array( + array( + 'name' => 'helper_type', + 'label' => __( 'Helper Type', 'pods' ), + 'type' => 'pick', + 'default' => 'display', + 'data' => array( + 'input' => 'Input (change form fields)', + 'display' => 'Display (change field output when using magic tags)', + 'pre_save' => 'Pre-Save (change form fields before saving)', + 'post_save' => 'Post-Save', + 'pre_delete' => 'Pre-Delete', + 'post_delete' => 'Post-Delete', + ), + ), + array( + 'name' => 'code', + 'label' => __( 'Code', 'pods' ), + 'type' => 'code', + ), + ); + + pods_group_add( $pod, __( 'Helper', 'pods' ), $fields, 'normal', 'high' ); + } + + /** + * Get the fields + * + * @param null $_null + * @param null $post_ID + * @param null $meta_key + * @param bool $single + * + * @return array|bool|int|mixed|null|string|void + */ + public function get_meta( $_null, $post_ID = null, $meta_key = null, $single = false ) { + + if ( 'code' == $meta_key ) { + $post = get_post( $post_ID ); + + if ( is_object( $post ) && $this->object_type == $post->post_type ) { + return $post->post_content; + } + } + + return $_null; + } + + /** + * Save the fields + * + * @param $_null + * @param int $post_ID + * @param string $meta_key + * @param string $meta_value + * + * @return bool|int|null + */ + public function save_meta( $_null, $post_ID = null, $meta_key = null, $meta_value = null ) { + + if ( 'code' == $meta_key ) { + $post = get_post( $post_ID ); + + if ( is_object( $post ) && $this->object_type == $post->post_type ) { + $postdata = array( + 'ID' => $post_ID, + 'post_content' => $meta_value, + ); + + remove_filter( current_filter(), array( $this, __FUNCTION__ ) ); + + $revisions = false; + + if ( has_action( 'pre_post_update', 'wp_save_post_revision' ) ) { + remove_action( 'pre_post_update', 'wp_save_post_revision' ); + + $revisions = true; + } + + wp_update_post( (object) $postdata ); + // objects will be automatically sanitized + if ( $revisions ) { + add_action( 'pre_post_update', 'wp_save_post_revision' ); + } + + return true; + }//end if + }//end if + + return $_null; + } + + /** + * @static + * + * Run a helper within a Pod Page or WP Template + * + * $params['helper'] string Helper name + * $params['value'] string Value to run Helper on + * $params['name'] string Field name + * + * @param array $params An associative array of parameters + * @param null $obj + * + * @return mixed Anything returned by the helper + * @since 2.0.0 + */ + public static function helper( $params, $obj = null ) { + + /** + * @var $obj Pods + */ + if ( ! empty( $obj ) ) { + self::$obj =& $obj; + } else { + $obj =& self::$obj; + } + + if ( empty( $obj ) || ! is_object( $obj ) ) { + return ''; + } + + $defaults = array( + 'helper' => '', + 'value' => '', + 'name' => '', + 'deprecated' => false, + ); + + if ( is_array( $params ) ) { + $params = array_merge( $defaults, $params ); + } else { + $params = $defaults; + } + + $params = (object) $params; + + if ( empty( $params->helper ) ) { + return pods_error( __( 'Helper name required', 'pods' ), $obj ); + } elseif ( ! is_array( $params->helper ) ) { + $params->helper = trim( $params->helper ); + } + + if ( ! isset( $params->value ) ) { + $params->value = null; + } + + if ( true === $params->deprecated && is_array( $params->value ) && ! empty( $params->value ) && ! isset( $params->value[0] ) ) { + $params->value = array( $params->value ); + } + + if ( ! isset( $params->name ) ) { + $params->name = null; + } + + $helper = get_page_by_title( $params->helper, OBJECT, '_pods_helper' ); + + if ( $helper ) { + $helper = [ + 'id' => $helper->ID, + 'name' => $helper->post_title, + 'code' => $helper->post_content, + 'type' => str_replace( '_pods_', '', $helper->post_type ), + 'slug' => $helper->post_name, + 'options' => [], + ]; + } + + ob_start(); + + if ( ! empty( $helper ) && ! empty( $helper['code'] ) ) { + $code = $helper['code']; + + $code = str_replace( '$this->', '$obj->', $code ); + + $value =& $params->value; + $name =& $params->name; + + $_safe_params = $params; + + if ( ! defined( 'PODS_DISABLE_EVAL' ) || ! PODS_DISABLE_EVAL ) { + eval( "?>{$code}" ); + } else { + echo $code; + } + + $params = $_safe_params; + } elseif ( is_callable( (string) $params->helper ) ) { + $params->helper = (string) $params->helper; + + $disallowed = array( + 'system', + 'exec', + 'popen', + 'eval', + 'preg_replace', + 'create_function', + 'include', + 'include_once', + 'require', + 'require_once', + ); + + $allowed = array(); + + /** + * Allows adjusting the disallowed callbacks as needed. + * + * @param array $disallowed List of callbacks not allowed. + * @param array $params Parameters used by Pods::helper() method. + * + * @since 2.7.0 + */ + $disallowed = apply_filters( 'pods_helper_disallowed_callbacks', $disallowed, get_object_vars( $params ) ); + + /** + * Allows adjusting the allowed allowed callbacks as needed. + * + * @param array $allowed List of callbacks explicitly allowed. + * @param array $params Parameters used by Pods::helper() method. + * + * @since 2.7.0 + */ + $allowed = apply_filters( 'pods_helper_allowed_callbacks', $allowed, get_object_vars( $params ) ); + + // Clean up helper callback (if string) + $params->helper = strip_tags( str_replace( array( '`', chr( 96 ) ), "'", $params->helper ) ); + + $is_allowed = false; + + if ( ! empty( $allowed ) ) { + if ( in_array( $params->helper, $allowed, true ) ) { + $is_allowed = true; + } + } elseif ( ! in_array( $params->helper, $disallowed, true ) ) { + $is_allowed = true; + } + + if ( $is_allowed ) { + echo call_user_func( $params->helper, $params->value, $params->name, $params, $obj ); + } + }//end if + + $slug = $helper['slug']; + + $out = ob_get_clean(); + + $out = apply_filters( 'pods_helpers_post_helper', $out, $params, $helper ); + $out = apply_filters( "pods_helpers_post_helper_{$slug}", $out, $params, $helper ); + + return $out; + } +} diff --git a/license.txt b/license.txt new file mode 100644 index 0000000..6c5b18c --- /dev/null +++ b/license.txt @@ -0,0 +1,280 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS diff --git a/pods-helpers.php b/pods-helpers.php new file mode 100644 index 0000000..e493b34 --- /dev/null +++ b/pods-helpers.php @@ -0,0 +1,57 @@ + __DIR__ . '/Helpers.php', + ]; + + return $component_files; +} ); + +add_filter( 'pods_helper_allow_callbacks', static function( $allowed, $params ) { + // Try and get the helper, then maybe add a filter. + if ( ! empty( $params['helper'] ) && ! is_callable( $params['helper'] ) ) { + add_filter( 'pods_helper_include_obj', '__return_true', 15 ); + + add_filter( $params['helper'], static function( $value, $obj = null ) use ( $params ) { + $value = Pods_Helpers::helper( $params, $obj ); + + if ( $obj ) { + remove_filter( 'pods_helper_include_obj', '__return_true', 15 ); + } + + return $value; + }, 10, 2 ); + } + + return $allowed; +}, 10, 2 ); \ No newline at end of file diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..3e13792 --- /dev/null +++ b/readme.txt @@ -0,0 +1,31 @@ +=== Pods Helpers === +Contributors: sc0ttkclark +Donate link: https://friends.pods.io/ +Tags: pods +Requires at least: 5.5 +Tested up to: 5.8 +Requires PHP: 5.6 +Stable tag: 2.4.0 +License: GPLv2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html + +A holdover from Pods 1.x for backwards compatibility purposes, you most likely don't need these and we recommend you use our WP filters and actions instead. + +== Description == + +Requires Pods 2.8.8+ to work. + +== Installation == + +1. Unpack the entire contents of this plugin zip file into your `wp-content/plugins/` folder locally +1. Upload to your site +1. Navigate to `wp-admin/plugins.php` on your site (your WP Admin plugin page) +1. Activate this plugin + +OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin's name + +== Changelog == + += 2.4.0 - December 2nd, 2021 = + +* Reintroduced Pods Helper functionality as a separate plugin, requires Pods 2.8.8+ to run.