@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | public function set_template_data( array $data, $var_name = 'data' ) { |
| 118 | 118 | global $wp_query; |
| 119 | 119 | |
| 120 | - $wp_query->query_vars[ $var_name ] = (object) $data; |
|
| 120 | + $wp_query->query_vars[ $var_name ] = (object)$data; |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | /** |
@@ -130,8 +130,8 @@ discard block |
||
| 130 | 130 | public function unset_template_data() { |
| 131 | 131 | global $wp_query; |
| 132 | 132 | |
| 133 | - if ( isset( $wp_query->query_vars['data'] ) ) { |
|
| 134 | - unset( $wp_query->query_vars['data'] ); |
|
| 133 | + if ( isset( $wp_query->query_vars[ 'data' ] ) ) { |
|
| 134 | + unset( $wp_query->query_vars[ 'data' ] ); |
|
| 135 | 135 | } |
| 136 | 136 | } |
| 137 | 137 | |
@@ -148,9 +148,9 @@ discard block |
||
| 148 | 148 | protected function get_template_file_names( $slug, $name ) { |
| 149 | 149 | $templates = array(); |
| 150 | 150 | if ( isset( $name ) ) { |
| 151 | - $templates[] = $slug . '-' . $name . '.php'; |
|
| 151 | + $templates[ ] = $slug . '-' . $name . '.php'; |
|
| 152 | 152 | } |
| 153 | - $templates[] = $slug . '.php'; |
|
| 153 | + $templates[ ] = $slug . '.php'; |
|
| 154 | 154 | |
| 155 | 155 | /** |
| 156 | 156 | * Allow template choices to be filtered. |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | $located = false; |
| 189 | 189 | |
| 190 | 190 | // Remove empty entries. |
| 191 | - $template_names = array_filter( (array) $template_names ); |
|
| 191 | + $template_names = array_filter( (array)$template_names ); |
|
| 192 | 192 | $template_paths = $this->get_template_paths(); |
| 193 | 193 | |
| 194 | 194 | // Try to find a template file. |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | |
| 234 | 234 | // Only add this conditionally, so non-child themes don't redundantly check active theme twice. |
| 235 | 235 | if ( is_child_theme() ) { |
| 236 | - $file_paths[1] = trailingslashit( get_stylesheet_directory() ) . $theme_directory; |
|
| 236 | + $file_paths[ 1 ] = trailingslashit( get_stylesheet_directory() ) . $theme_directory; |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | /** |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | /** |
| 82 | 82 | * @see RGFormsModel::update_lead_property() Trigger when any entry property changes |
| 83 | 83 | */ |
| 84 | - foreach( $this->lead_db_columns as $column ) { |
|
| 84 | + foreach ( $this->lead_db_columns as $column ) { |
|
| 85 | 85 | add_action( 'gform_update_' . $column, array( $this, 'entry_status_changed' ), 10, 3 ); |
| 86 | 86 | } |
| 87 | 87 | |
@@ -114,9 +114,9 @@ discard block |
||
| 114 | 114 | return; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - do_action( 'gravityview_log_debug', __METHOD__ . ' adding form ' . $entry['form_id'] . ' to blacklist because entry #' . $lead_id . ' was deleted', array( 'value' => $property_value, 'previous' => $previous_value ) ); |
|
| 117 | + do_action( 'gravityview_log_debug', __METHOD__ . ' adding form ' . $entry[ 'form_id' ] . ' to blacklist because entry #' . $lead_id . ' was deleted', array( 'value' => $property_value, 'previous' => $previous_value ) ); |
|
| 118 | 118 | |
| 119 | - $this->blacklist_add( $entry['form_id'] ); |
|
| 119 | + $this->blacklist_add( $entry[ 'form_id' ] ); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
@@ -129,9 +129,9 @@ discard block |
||
| 129 | 129 | */ |
| 130 | 130 | public function entry_updated( $form, $lead_id ) { |
| 131 | 131 | |
| 132 | - do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_updated] adding form ' . $form['id'] . ' to blacklist because entry #' . $lead_id . ' was updated' ); |
|
| 132 | + do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_updated] adding form ' . $form[ 'id' ] . ' to blacklist because entry #' . $lead_id . ' was updated' ); |
|
| 133 | 133 | |
| 134 | - $this->blacklist_add( $form['id'] ); |
|
| 134 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
@@ -146,9 +146,9 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | public function entry_created( $entry, $form ) { |
| 148 | 148 | |
| 149 | - do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_created] adding form ' . $form['id'] . ' to blacklist because entry #' . $entry['id'] . ' was created' ); |
|
| 149 | + do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_created] adding form ' . $form[ 'id' ] . ' to blacklist because entry #' . $entry[ 'id' ] . ' was created' ); |
|
| 150 | 150 | |
| 151 | - $this->blacklist_add( $form['id'] ); |
|
| 151 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
@@ -164,9 +164,9 @@ discard block |
||
| 164 | 164 | return; |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | - do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_added] adding form ' . $form['id'] . ' to blacklist because entry #' . $entry['id'] . ' was added' ); |
|
| 167 | + do_action( 'gravityview_log_debug', 'GravityView_Cache[entry_added] adding form ' . $form[ 'id' ] . ' to blacklist because entry #' . $entry[ 'id' ] . ' was added' ); |
|
| 168 | 168 | |
| 169 | - $this->blacklist_add( $form['id'] ); |
|
| 169 | + $this->blacklist_add( $form[ 'id' ] ); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | /** |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | // Normally just one form, but supports multiple forms |
| 186 | 186 | // |
| 187 | 187 | // Array of IDs 12, 5, 14 would result in `f-12f-5f-14` |
| 188 | - $forms = 'f:' . implode( '&f:', (array) $form_ids ); |
|
| 188 | + $forms = 'f:' . implode( '&f:', (array)$form_ids ); |
|
| 189 | 189 | |
| 190 | 190 | // Prefix for transient keys |
| 191 | 191 | // Now the prefix would be: `gv-cache-f-12f-5f-14` |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | ) ); |
| 243 | 243 | |
| 244 | 244 | // Add the passed form IDs |
| 245 | - $blacklist = array_merge( (array) $blacklist, $form_ids ); |
|
| 245 | + $blacklist = array_merge( (array)$blacklist, $form_ids ); |
|
| 246 | 246 | |
| 247 | 247 | // Don't duplicate |
| 248 | 248 | $blacklist = array_unique( $blacklist ); |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | |
| 263 | 263 | $blacklist = get_option( self::BLACKLIST_OPTION_NAME, array() ); |
| 264 | 264 | |
| 265 | - $updated_list = array_diff( $blacklist, (array) $form_ids ); |
|
| 265 | + $updated_list = array_diff( $blacklist, (array)$form_ids ); |
|
| 266 | 266 | |
| 267 | 267 | do_action( 'gravityview_log_debug', 'GravityView_Cache[blacklist_remove] Removing form IDs from cache blacklist', array( |
| 268 | 268 | '$form_ids' => $form_ids, |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | return false; |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | - foreach ( (array) $form_ids as $form_id ) { |
|
| 298 | + foreach ( (array)$form_ids as $form_id ) { |
|
| 299 | 299 | |
| 300 | 300 | if ( in_array( $form_id, $blacklist ) ) { |
| 301 | 301 | |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | * @filter `gravityview_cache_time_{$filter_name}` Modify the cache time for a type of cache |
| 368 | 368 | * @param int $time_in_seconds Default: `DAY_IN_SECONDS` |
| 369 | 369 | */ |
| 370 | - $cache_time = (int) apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
| 370 | + $cache_time = (int)apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
| 371 | 371 | |
| 372 | 372 | do_action( 'gravityview_log_debug', 'GravityView_Cache[set] Setting cache with transient key ' . $this->key . ' for ' . $cache_time . ' seconds' ); |
| 373 | 373 | |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | return; |
| 404 | 404 | } |
| 405 | 405 | |
| 406 | - foreach ( (array) $form_ids as $form_id ) { |
|
| 406 | + foreach ( (array)$form_ids as $form_id ) { |
|
| 407 | 407 | |
| 408 | 408 | $key = $this->get_cache_key_prefix( $form_id ); |
| 409 | 409 | |
@@ -517,7 +517,7 @@ discard block |
||
| 517 | 517 | |
| 518 | 518 | if ( GVCommon::has_cap( 'edit_gravityviews' ) ) { |
| 519 | 519 | |
| 520 | - if ( isset( $_GET['cache'] ) || isset( $_GET['nocache'] ) ) { |
|
| 520 | + if ( isset( $_GET[ 'cache' ] ) || isset( $_GET[ 'nocache' ] ) ) { |
|
| 521 | 521 | |
| 522 | 522 | do_action( 'gravityview_log_debug', 'GravityView_Cache[use_cache] Not using cache: ?cache or ?nocache is in the URL' ); |
| 523 | 523 | |
@@ -546,7 +546,7 @@ discard block |
||
| 546 | 546 | */ |
| 547 | 547 | $use_cache = apply_filters( 'gravityview_use_cache', $use_cache, $this ); |
| 548 | 548 | |
| 549 | - return (boolean) $use_cache; |
|
| 549 | + return (boolean)$use_cache; |
|
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | } |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | return $meta_keys; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - if( $acf_keys = get_field_objects( $post_id, array( 'load_value' => false ) ) ) { |
|
| 51 | + if ( $acf_keys = get_field_objects( $post_id, array( 'load_value' => false ) ) ) { |
|
| 52 | 52 | return array_merge( array_keys( $acf_keys ), $meta_keys ); |
| 53 | 53 | } |
| 54 | 54 | |
@@ -63,9 +63,9 @@ discard block |
||
| 63 | 63 | * @return void |
| 64 | 64 | */ |
| 65 | 65 | private function fix_posted_fields() { |
| 66 | - if( is_admin() && isset( $_POST['action'] ) && isset( $_POST['post_type'] ) ) { |
|
| 67 | - if( 'editpost' === $_POST['action'] && 'gravityview' === $_POST['post_type'] ) { |
|
| 68 | - $_POST['fields'] = _gravityview_process_posted_fields(); |
|
| 66 | + if ( is_admin() && isset( $_POST[ 'action' ] ) && isset( $_POST[ 'post_type' ] ) ) { |
|
| 67 | + if ( 'editpost' === $_POST[ 'action' ] && 'gravityview' === $_POST[ 'post_type' ] ) { |
|
| 68 | + $_POST[ 'fields' ] = _gravityview_process_posted_fields(); |
|
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | 71 | } |
@@ -62,6 +62,8 @@ |
||
| 62 | 62 | * @internal |
| 63 | 63 | * @since future |
| 64 | 64 | * |
| 65 | + * @param integer $form_id |
|
| 66 | + * @param integer $count |
|
| 65 | 67 | * @return array The old associative array data as returned by |
| 66 | 68 | * \GravityView_frontend::get_view_entries(), the paging parameters |
| 67 | 69 | * and a total count of all entries. |
@@ -94,15 +94,15 @@ discard block |
||
| 94 | 94 | $paging = rgar( $parameters, 'paging' ); |
| 95 | 95 | } else { |
| 96 | 96 | $entries = $form->entries |
| 97 | - ->filter( \GV\GF_Entry_Filter::from_search_criteria( $criteria['search_criteria'] ) ) |
|
| 98 | - ->offset( $args['offset'] ) |
|
| 99 | - ->limit( $criteria['paging']['page_size'] ) |
|
| 100 | - ->page( ( ( $criteria['paging']['offset'] - $args['offset'] ) / $criteria['paging']['page_size'] ) + 1 ); |
|
| 101 | - if ( ! empty( $criteria['sorting'] ) ) { |
|
| 97 | + ->filter( \GV\GF_Entry_Filter::from_search_criteria( $criteria[ 'search_criteria' ] ) ) |
|
| 98 | + ->offset( $args[ 'offset' ] ) |
|
| 99 | + ->limit( $criteria[ 'paging' ][ 'page_size' ] ) |
|
| 100 | + ->page( ( ( $criteria[ 'paging' ][ 'offset' ] - $args[ 'offset' ] ) / $criteria[ 'paging' ][ 'page_size' ] ) + 1 ); |
|
| 101 | + if ( ! empty( $criteria[ 'sorting' ] ) ) { |
|
| 102 | 102 | $field = new \GV\Field(); |
| 103 | - $field->ID = $criteria['sorting']['key']; |
|
| 104 | - $direction = strtolower( $criteria['sorting']['direction'] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
| 105 | - $mode = $criteria['sorting']['is_numeric'] ? \GV\Entry_Sort::NUMERIC : \GV\Entry_Sort::ALPHA; |
|
| 103 | + $field->ID = $criteria[ 'sorting' ][ 'key' ]; |
|
| 104 | + $direction = strtolower( $criteria[ 'sorting' ][ 'direction' ] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
| 105 | + $mode = $criteria[ 'sorting' ][ 'is_numeric' ] ? \GV\Entry_Sort::NUMERIC : \GV\Entry_Sort::ALPHA; |
|
| 106 | 106 | $entries = $entries->sort( new \GV\Entry_Sort( $field, $direction, $mode ) ); |
| 107 | 107 | } |
| 108 | 108 | |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | /** Add some global fix for field capability discrepancies. */ |
| 130 | 130 | add_filter( 'gravityview/configuration/fields', function( $fields ) { |
| 131 | - if ( empty( $fields ) ) { |
|
| 131 | + if ( empty( $fields ) ) { |
|
| 132 | 132 | return $fields; |
| 133 | 133 | } |
| 134 | 134 | |
@@ -155,11 +155,11 @@ discard block |
||
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | foreach ( $_fields as $uid => &$_field ) { |
| 158 | - if ( ! isset( $_field['only_loggedin'] ) ) { |
|
| 158 | + if ( ! isset( $_field[ 'only_loggedin' ] ) ) { |
|
| 159 | 159 | continue; |
| 160 | 160 | } |
| 161 | 161 | /** If we do not require login, we don't require a cap. */ |
| 162 | - $_field['only_loggedin'] != '1' && ( $_field['only_loggedin_cap'] = '' ); |
|
| 162 | + $_field[ 'only_loggedin' ] != '1' && ( $_field[ 'only_loggedin_cap' ] = '' ); |
|
| 163 | 163 | } |
| 164 | 164 | } |
| 165 | 165 | return $fields; |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | /** The future branch of GravityView requires PHP 5.3+ namespaces and SPL. */ |
| 8 | -if ( version_compare( phpversion(), '5.3' , '<' ) ) { |
|
| 8 | +if ( version_compare( phpversion(), '5.3', '<' ) ) { |
|
| 9 | 9 | return false; |
| 10 | 10 | |
| 11 | 11 | /** Tests with a suppressed future. */ |
@@ -50,7 +50,6 @@ |
||
| 50 | 50 | * Register this shortcode class with the WordPress Shortcode API. |
| 51 | 51 | * |
| 52 | 52 | * @internal |
| 53 | - |
|
| 54 | 53 | * @return \GV\Shortcode|null The only internally registered instance of this shortcode, or null on error. |
| 55 | 54 | */ |
| 56 | 55 | public static function add() { |
@@ -56,16 +56,16 @@ discard block |
||
| 56 | 56 | public static function add() { |
| 57 | 57 | $shortcode = new static(); |
| 58 | 58 | if ( shortcode_exists( $shortcode->name ) ) { |
| 59 | - if ( empty( self::$shortcodes[$shortcode->name] ) ) { |
|
| 59 | + if ( empty( self::$shortcodes[ $shortcode->name ] ) ) { |
|
| 60 | 60 | gravityview()->log->error( 'Shortcode [{shortcode}] has already been registered elsewhere.', array( 'shortcode' => $shortcode->name ) ); |
| 61 | 61 | return null; |
| 62 | 62 | } |
| 63 | 63 | } else { |
| 64 | 64 | add_shortcode( $shortcode->name, array( get_class( $shortcode ), 'callback' ) ); |
| 65 | - self::$shortcodes[$shortcode->name] = $shortcode; |
|
| 65 | + self::$shortcodes[ $shortcode->name ] = $shortcode; |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - return self::$shortcodes[$shortcode->name]; |
|
| 68 | + return self::$shortcodes[ $shortcode->name ]; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | /** |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | public static function remove() { |
| 79 | 79 | $shortcode = new static(); |
| 80 | - unset( self::$shortcodes[$shortcode->name] ); |
|
| 80 | + unset( self::$shortcodes[ $shortcode->name ] ); |
|
| 81 | 81 | remove_shortcode( $shortcode->name ); |
| 82 | 82 | } |
| 83 | 83 | |
@@ -109,14 +109,14 @@ discard block |
||
| 109 | 109 | preg_match_all( '/' . get_shortcode_regex() . '/', $content, $matches, PREG_SET_ORDER ); |
| 110 | 110 | |
| 111 | 111 | foreach ( $matches as $shortcode ) { |
| 112 | - $shortcode_name = $shortcode[2]; |
|
| 112 | + $shortcode_name = $shortcode[ 2 ]; |
|
| 113 | 113 | |
| 114 | - $shortcode_atts = shortcode_parse_atts( $shortcode[3] ); |
|
| 115 | - $shortcode_content = $shortcode[5]; |
|
| 114 | + $shortcode_atts = shortcode_parse_atts( $shortcode[ 3 ] ); |
|
| 115 | + $shortcode_content = $shortcode[ 5 ]; |
|
| 116 | 116 | |
| 117 | 117 | /** This is a registered GravityView shortcode. */ |
| 118 | - if ( !empty( self::$shortcodes[$shortcode_name] ) ) { |
|
| 119 | - $shortcode = clone self::$shortcodes[$shortcode_name]; |
|
| 118 | + if ( ! empty( self::$shortcodes[ $shortcode_name ] ) ) { |
|
| 119 | + $shortcode = clone self::$shortcodes[ $shortcode_name ]; |
|
| 120 | 120 | } else { |
| 121 | 121 | /** This is some generic shortcode. */ |
| 122 | 122 | $shortcode = new self; |
@@ -202,8 +202,8 @@ discard block |
||
| 202 | 202 | * @return string The version of PHP. |
| 203 | 203 | */ |
| 204 | 204 | private function get_php_version() { |
| 205 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] ) ? |
|
| 206 | - $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] : phpversion(); |
|
| 205 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] ) ? |
|
| 206 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] : phpversion(); |
|
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | /** |
@@ -214,8 +214,8 @@ discard block |
||
| 214 | 214 | * @return string The version of WordPress. |
| 215 | 215 | */ |
| 216 | 216 | private function get_wordpress_version() { |
| 217 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] ) ? |
|
| 218 | - $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] : $GLOBALS['wp_version']; |
|
| 217 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] ) ? |
|
| 218 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] : $GLOBALS[ 'wp_version' ]; |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | /** |
@@ -226,13 +226,13 @@ discard block |
||
| 226 | 226 | * @return string|null The version of Gravity Forms or null if inactive. |
| 227 | 227 | */ |
| 228 | 228 | private function get_gravityforms_version() { |
| 229 | - if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE'] ) ) { |
|
| 229 | + if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE' ] ) ) { |
|
| 230 | 230 | gravityview()->log->error( 'Gravity Forms is inactive or not installed.' ); |
| 231 | 231 | return null; |
| 232 | 232 | } |
| 233 | 233 | |
| 234 | - return ! empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] ) ? |
|
| 235 | - $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] : \GFCommon::$version; |
|
| 234 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] ) ? |
|
| 235 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] : \GFCommon::$version; |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | private function __clone() { } |
@@ -5,251 +5,251 @@ |
||
| 5 | 5 | */ |
| 6 | 6 | class GravityView_Change_Entry_Creator { |
| 7 | 7 | |
| 8 | - function __construct() { |
|
| 9 | - |
|
| 10 | - /** |
|
| 11 | - * @since 1.5.1 |
|
| 12 | - */ |
|
| 13 | - add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
| 14 | - |
|
| 15 | - // ONLY ADMIN FROM HERE ON. |
|
| 16 | - if( !is_admin() ) { return; } |
|
| 17 | - |
|
| 18 | - /** |
|
| 19 | - * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
|
| 20 | - * @since 1.7.4 |
|
| 21 | - * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
|
| 22 | - */ |
|
| 23 | - if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
| 24 | - return; |
|
| 25 | - } |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * Use `init` to fix bbPress warning |
|
| 29 | - * @see https://bbpress.trac.wordpress.org/ticket/2309 |
|
| 30 | - */ |
|
| 31 | - add_action('init', array( $this, 'load'), 100 ); |
|
| 32 | - |
|
| 33 | - add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
| 34 | - |
|
| 35 | - } |
|
| 36 | - |
|
| 37 | - /** |
|
| 38 | - * When an user is created using the User Registration add-on, assign the entry to them |
|
| 39 | - * |
|
| 40 | - * @since 1.5.1 |
|
| 41 | - * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field |
|
| 42 | - * @param int $user_id WordPress User ID |
|
| 43 | - * @param array $config User registration feed configuration |
|
| 44 | - * @param array $entry GF Entry array |
|
| 45 | - * @param string $password User password |
|
| 46 | - * @return void |
|
| 47 | - */ |
|
| 48 | - function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * Disable assigning the new user to the entry by returning false. |
|
| 52 | - * @param int $user_id WordPress User ID |
|
| 53 | - * @param array $config User registration feed configuration |
|
| 54 | - * @param array $entry GF Entry array |
|
| 55 | - */ |
|
| 56 | - $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
| 57 | - |
|
| 58 | - // If filter returns false, do not process |
|
| 59 | - if( empty( $assign_to_lead ) ) { |
|
| 60 | - return; |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
|
| 64 | - $result = RGFormsModel::update_lead_property( $entry['id'], 'created_by', $user_id, false, true ); |
|
| 65 | - |
|
| 66 | - if( empty( $result ) ) { |
|
| 67 | - $status = __('Error', 'gravityview'); |
|
| 68 | - } else { |
|
| 69 | - $status = __('Success', 'gravityview'); |
|
| 70 | - } |
|
| 71 | - |
|
| 72 | - $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
| 73 | - |
|
| 74 | - do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note ); |
|
| 75 | - |
|
| 76 | - /** |
|
| 77 | - * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
| 78 | - * @since 1.21.5 |
|
| 79 | - * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
| 80 | - */ |
|
| 81 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 82 | - return; |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
| 8 | + function __construct() { |
|
| 9 | + |
|
| 10 | + /** |
|
| 11 | + * @since 1.5.1 |
|
| 12 | + */ |
|
| 13 | + add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
| 14 | + |
|
| 15 | + // ONLY ADMIN FROM HERE ON. |
|
| 16 | + if( !is_admin() ) { return; } |
|
| 17 | + |
|
| 18 | + /** |
|
| 19 | + * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
|
| 20 | + * @since 1.7.4 |
|
| 21 | + * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
|
| 22 | + */ |
|
| 23 | + if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
| 24 | + return; |
|
| 25 | + } |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * Use `init` to fix bbPress warning |
|
| 29 | + * @see https://bbpress.trac.wordpress.org/ticket/2309 |
|
| 30 | + */ |
|
| 31 | + add_action('init', array( $this, 'load'), 100 ); |
|
| 32 | + |
|
| 33 | + add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
| 34 | + |
|
| 35 | + } |
|
| 36 | + |
|
| 37 | + /** |
|
| 38 | + * When an user is created using the User Registration add-on, assign the entry to them |
|
| 39 | + * |
|
| 40 | + * @since 1.5.1 |
|
| 41 | + * @uses RGFormsModel::update_lead_property() Modify the entry `created_by` field |
|
| 42 | + * @param int $user_id WordPress User ID |
|
| 43 | + * @param array $config User registration feed configuration |
|
| 44 | + * @param array $entry GF Entry array |
|
| 45 | + * @param string $password User password |
|
| 46 | + * @return void |
|
| 47 | + */ |
|
| 48 | + function assign_new_user_to_lead( $user_id, $config, $entry = array(), $password = '' ) { |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * Disable assigning the new user to the entry by returning false. |
|
| 52 | + * @param int $user_id WordPress User ID |
|
| 53 | + * @param array $config User registration feed configuration |
|
| 54 | + * @param array $entry GF Entry array |
|
| 55 | + */ |
|
| 56 | + $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
|
| 57 | + |
|
| 58 | + // If filter returns false, do not process |
|
| 59 | + if( empty( $assign_to_lead ) ) { |
|
| 60 | + return; |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
|
| 64 | + $result = RGFormsModel::update_lead_property( $entry['id'], 'created_by', $user_id, false, true ); |
|
| 65 | + |
|
| 66 | + if( empty( $result ) ) { |
|
| 67 | + $status = __('Error', 'gravityview'); |
|
| 68 | + } else { |
|
| 69 | + $status = __('Success', 'gravityview'); |
|
| 70 | + } |
|
| 71 | + |
|
| 72 | + $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
| 73 | + |
|
| 74 | + do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note ); |
|
| 75 | + |
|
| 76 | + /** |
|
| 77 | + * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
|
| 78 | + * @since 1.21.5 |
|
| 79 | + * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
|
| 80 | + */ |
|
| 81 | + if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 82 | + return; |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
| 86 | 86 | |
| 87 | - } |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | - /** |
|
| 90 | - * Disable previous functionality; use this one as the canonical. |
|
| 91 | - * @return void |
|
| 92 | - */ |
|
| 93 | - function prevent_conflicts() { |
|
| 89 | + /** |
|
| 90 | + * Disable previous functionality; use this one as the canonical. |
|
| 91 | + * @return void |
|
| 92 | + */ |
|
| 93 | + function prevent_conflicts() { |
|
| 94 | 94 | |
| 95 | - // Plugin that was provided here: |
|
| 96 | - // @link https://gravityview.co/support/documentation/201991205/ |
|
| 97 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 98 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 99 | - |
|
| 100 | - // Disable for Gravity Forms Add-ons 3.6.2 and lower |
|
| 101 | - if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
| 95 | + // Plugin that was provided here: |
|
| 96 | + // @link https://gravityview.co/support/documentation/201991205/ |
|
| 97 | + remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 98 | + remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 99 | + |
|
| 100 | + // Disable for Gravity Forms Add-ons 3.6.2 and lower |
|
| 101 | + if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
| 102 | 102 | |
| 103 | - $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
|
| 103 | + $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
|
| 104 | 104 | |
| 105 | - // Now, no validation is required in the methods; let's hook in. |
|
| 106 | - remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
| 107 | - |
|
| 108 | - remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10 ); |
|
| 109 | - |
|
| 110 | - remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
| 111 | - } |
|
| 112 | - |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - /** |
|
| 116 | - * @since 3.6.3 |
|
| 117 | - * @return void |
|
| 118 | - */ |
|
| 119 | - function load() { |
|
| 105 | + // Now, no validation is required in the methods; let's hook in. |
|
| 106 | + remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
| 107 | + |
|
| 108 | + remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10 ); |
|
| 109 | + |
|
| 110 | + remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
| 111 | + } |
|
| 112 | + |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + /** |
|
| 116 | + * @since 3.6.3 |
|
| 117 | + * @return void |
|
| 118 | + */ |
|
| 119 | + function load() { |
|
| 120 | 120 | |
| 121 | - // Does GF exist? |
|
| 122 | - if( !class_exists('GFCommon') ) { |
|
| 123 | - return; |
|
| 124 | - } |
|
| 121 | + // Does GF exist? |
|
| 122 | + if( !class_exists('GFCommon') ) { |
|
| 123 | + return; |
|
| 124 | + } |
|
| 125 | 125 | |
| 126 | - // Can the user edit entries? |
|
| 127 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 128 | - return; |
|
| 129 | - } |
|
| 126 | + // Can the user edit entries? |
|
| 127 | + if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 128 | + return; |
|
| 129 | + } |
|
| 130 | 130 | |
| 131 | - // If screen mode isn't set, then we're in the wrong place. |
|
| 132 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
| 133 | - return; |
|
| 134 | - } |
|
| 131 | + // If screen mode isn't set, then we're in the wrong place. |
|
| 132 | + if( empty( $_REQUEST['screen_mode'] ) ) { |
|
| 133 | + return; |
|
| 134 | + } |
|
| 135 | 135 | |
| 136 | - // Now, no validation is required in the methods; let's hook in. |
|
| 137 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 136 | + // Now, no validation is required in the methods; let's hook in. |
|
| 137 | + add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 138 | 138 | |
| 139 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
| 139 | + add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
| 140 | 140 | |
| 141 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
| 141 | + add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
| 142 | 142 | |
| 143 | - } |
|
| 143 | + } |
|
| 144 | 144 | |
| 145 | - /** |
|
| 146 | - * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
| 147 | - * @return void |
|
| 148 | - */ |
|
| 149 | - function set_screen_mode() { |
|
| 145 | + /** |
|
| 146 | + * Allows for edit links to work with a link instead of a form (GET instead of POST) |
|
| 147 | + * @return void |
|
| 148 | + */ |
|
| 149 | + function set_screen_mode() { |
|
| 150 | 150 | |
| 151 | - // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
| 152 | - if( rgget('screen_mode') === 'edit' ) { |
|
| 153 | - $_POST["screen_mode"] = 'edit'; |
|
| 154 | - } |
|
| 151 | + // If $_GET['screen_mode'] is set to edit, set $_POST value |
|
| 152 | + if( rgget('screen_mode') === 'edit' ) { |
|
| 153 | + $_POST["screen_mode"] = 'edit'; |
|
| 154 | + } |
|
| 155 | 155 | |
| 156 | - } |
|
| 156 | + } |
|
| 157 | 157 | |
| 158 | - /** |
|
| 159 | - * When the entry creator is changed, add a note to the entry |
|
| 160 | - * @param array $form GF entry array |
|
| 161 | - * @param int $entry_id Entry ID |
|
| 162 | - * @return void |
|
| 163 | - */ |
|
| 164 | - function update_entry_creator($form, $entry_id) { |
|
| 165 | - global $current_user; |
|
| 158 | + /** |
|
| 159 | + * When the entry creator is changed, add a note to the entry |
|
| 160 | + * @param array $form GF entry array |
|
| 161 | + * @param int $entry_id Entry ID |
|
| 162 | + * @return void |
|
| 163 | + */ |
|
| 164 | + function update_entry_creator($form, $entry_id) { |
|
| 165 | + global $current_user; |
|
| 166 | 166 | |
| 167 | - // Update the entry |
|
| 168 | - $created_by = absint( rgpost('created_by') ); |
|
| 167 | + // Update the entry |
|
| 168 | + $created_by = absint( rgpost('created_by') ); |
|
| 169 | 169 | |
| 170 | - RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
| 170 | + RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
|
| 171 | 171 | |
| 172 | - // If the creator has changed, let's add a note about who it used to be. |
|
| 173 | - $originally_created_by = rgpost('originally_created_by'); |
|
| 172 | + // If the creator has changed, let's add a note about who it used to be. |
|
| 173 | + $originally_created_by = rgpost('originally_created_by'); |
|
| 174 | 174 | |
| 175 | - // If there's no owner and there didn't used to be, keep going |
|
| 176 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 177 | - return; |
|
| 178 | - } |
|
| 175 | + // If there's no owner and there didn't used to be, keep going |
|
| 176 | + if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 177 | + return; |
|
| 178 | + } |
|
| 179 | 179 | |
| 180 | - // If the values have changed |
|
| 181 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 180 | + // If the values have changed |
|
| 181 | + if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 182 | 182 | |
| 183 | - $user_data = get_userdata($current_user->ID); |
|
| 183 | + $user_data = get_userdata($current_user->ID); |
|
| 184 | 184 | |
| 185 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
| 185 | + $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
| 186 | 186 | |
| 187 | - $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
| 187 | + $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
| 188 | 188 | |
| 189 | - if( !empty( $originally_created_by ) ) { |
|
| 190 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
| 191 | - $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
| 192 | - } |
|
| 189 | + if( !empty( $originally_created_by ) ) { |
|
| 190 | + $originally_created_by_user_data = get_userdata($originally_created_by); |
|
| 191 | + $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
|
| 192 | + } |
|
| 193 | 193 | |
| 194 | - if( !empty( $created_by ) ) { |
|
| 195 | - $created_by_user_data = get_userdata($created_by); |
|
| 196 | - $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
| 197 | - } |
|
| 194 | + if( !empty( $created_by ) ) { |
|
| 195 | + $created_by_user_data = get_userdata($created_by); |
|
| 196 | + $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
|
| 197 | + } |
|
| 198 | 198 | |
| 199 | - GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
| 200 | - } |
|
| 199 | + GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
| 200 | + } |
|
| 201 | 201 | |
| 202 | - } |
|
| 202 | + } |
|
| 203 | 203 | |
| 204 | - /** |
|
| 205 | - * Output the select to change the entry creator |
|
| 206 | - * @param int $form_id GF Form ID |
|
| 207 | - * @param array $entry GF entry array |
|
| 208 | - * @return void |
|
| 209 | - */ |
|
| 210 | - function add_select($form_id, $entry ) { |
|
| 204 | + /** |
|
| 205 | + * Output the select to change the entry creator |
|
| 206 | + * @param int $form_id GF Form ID |
|
| 207 | + * @param array $entry GF entry array |
|
| 208 | + * @return void |
|
| 209 | + */ |
|
| 210 | + function add_select($form_id, $entry ) { |
|
| 211 | 211 | |
| 212 | - if( rgpost('screen_mode') !== 'edit' ) { |
|
| 213 | - return; |
|
| 214 | - } |
|
| 212 | + if( rgpost('screen_mode') !== 'edit' ) { |
|
| 213 | + return; |
|
| 214 | + } |
|
| 215 | 215 | |
| 216 | - $created_by_id = rgar( $entry, 'created_by' ); |
|
| 216 | + $created_by_id = rgar( $entry, 'created_by' ); |
|
| 217 | 217 | |
| 218 | - $users = GVCommon::get_users( 'change_entry_creator' ); |
|
| 218 | + $users = GVCommon::get_users( 'change_entry_creator' ); |
|
| 219 | 219 | |
| 220 | - $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
| 220 | + $is_created_by_in_users = wp_list_filter( $users, array( 'ID' => $created_by_id ) ); |
|
| 221 | 221 | |
| 222 | - // Make sure that the entry creator is included in the users list. If not, add them. |
|
| 223 | - if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
| 222 | + // Make sure that the entry creator is included in the users list. If not, add them. |
|
| 223 | + if ( ! empty( $created_by_id ) && empty( $is_created_by_in_users ) ) { |
|
| 224 | 224 | |
| 225 | - if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
| 226 | - $users = array_merge( $users, $created_by_user ); |
|
| 227 | - } |
|
| 228 | - } |
|
| 225 | + if ( $created_by_user = GVCommon::get_users( 'change_entry_creator', array( 'include' => $created_by_id ) ) ) { |
|
| 226 | + $users = array_merge( $users, $created_by_user ); |
|
| 227 | + } |
|
| 228 | + } |
|
| 229 | 229 | |
| 230 | - $output = '<label for="change_created_by">'; |
|
| 231 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
| 232 | - $output .= '</label>'; |
|
| 230 | + $output = '<label for="change_created_by">'; |
|
| 231 | + $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
| 232 | + $output .= '</label>'; |
|
| 233 | 233 | |
| 234 | - // If there are users who are not being shown, show a warning. |
|
| 235 | - // TODO: Use AJAX instead of <select> |
|
| 236 | - $count_users = count_users(); |
|
| 237 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
| 238 | - $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
|
| 239 | - } |
|
| 234 | + // If there are users who are not being shown, show a warning. |
|
| 235 | + // TODO: Use AJAX instead of <select> |
|
| 236 | + $count_users = count_users(); |
|
| 237 | + if( sizeof( $users ) < $count_users['total_users'] ) { |
|
| 238 | + $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | - $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
| 242 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
| 243 | - foreach($users as $user) { |
|
| 244 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
| 245 | - } |
|
| 246 | - $output .= '</select>'; |
|
| 247 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
| 241 | + $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
|
| 242 | + $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
| 243 | + foreach($users as $user) { |
|
| 244 | + $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
| 245 | + } |
|
| 246 | + $output .= '</select>'; |
|
| 247 | + $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
| 248 | 248 | |
| 249 | - unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
| 249 | + unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
|
| 250 | 250 | |
| 251 | - echo $output; |
|
| 252 | - } |
|
| 251 | + echo $output; |
|
| 252 | + } |
|
| 253 | 253 | |
| 254 | 254 | } |
| 255 | 255 | |
@@ -10,17 +10,17 @@ discard block |
||
| 10 | 10 | /** |
| 11 | 11 | * @since 1.5.1 |
| 12 | 12 | */ |
| 13 | - add_action('gform_user_registered', array( $this, 'assign_new_user_to_lead'), 10, 4 ); |
|
| 13 | + add_action( 'gform_user_registered', array( $this, 'assign_new_user_to_lead' ), 10, 4 ); |
|
| 14 | 14 | |
| 15 | 15 | // ONLY ADMIN FROM HERE ON. |
| 16 | - if( !is_admin() ) { return; } |
|
| 16 | + if ( ! is_admin() ) { return; } |
|
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * @filter `gravityview_disable_change_entry_creator` Disable the Change Entry Creator functionality |
| 20 | 20 | * @since 1.7.4 |
| 21 | 21 | * @param boolean $disable Disable the Change Entry Creator functionality. Default: false. |
| 22 | 22 | */ |
| 23 | - if( apply_filters('gravityview_disable_change_entry_creator', false ) ) { |
|
| 23 | + if ( apply_filters( 'gravityview_disable_change_entry_creator', false ) ) { |
|
| 24 | 24 | return; |
| 25 | 25 | } |
| 26 | 26 | |
@@ -28,9 +28,9 @@ discard block |
||
| 28 | 28 | * Use `init` to fix bbPress warning |
| 29 | 29 | * @see https://bbpress.trac.wordpress.org/ticket/2309 |
| 30 | 30 | */ |
| 31 | - add_action('init', array( $this, 'load'), 100 ); |
|
| 31 | + add_action( 'init', array( $this, 'load' ), 100 ); |
|
| 32 | 32 | |
| 33 | - add_action('plugins_loaded', array( $this, 'prevent_conflicts') ); |
|
| 33 | + add_action( 'plugins_loaded', array( $this, 'prevent_conflicts' ) ); |
|
| 34 | 34 | |
| 35 | 35 | } |
| 36 | 36 | |
@@ -56,33 +56,33 @@ discard block |
||
| 56 | 56 | $assign_to_lead = apply_filters( 'gravityview_assign_new_user_to_entry', true, $user_id, $config, $entry ); |
| 57 | 57 | |
| 58 | 58 | // If filter returns false, do not process |
| 59 | - if( empty( $assign_to_lead ) ) { |
|
| 59 | + if ( empty( $assign_to_lead ) ) { |
|
| 60 | 60 | return; |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Update the entry. The `false` prevents checking Akismet; `true` disables the user updated hook from firing |
| 64 | - $result = RGFormsModel::update_lead_property( $entry['id'], 'created_by', $user_id, false, true ); |
|
| 64 | + $result = RGFormsModel::update_lead_property( $entry[ 'id' ], 'created_by', $user_id, false, true ); |
|
| 65 | 65 | |
| 66 | - if( empty( $result ) ) { |
|
| 67 | - $status = __('Error', 'gravityview'); |
|
| 66 | + if ( empty( $result ) ) { |
|
| 67 | + $status = __( 'Error', 'gravityview' ); |
|
| 68 | 68 | } else { |
| 69 | - $status = __('Success', 'gravityview'); |
|
| 69 | + $status = __( 'Success', 'gravityview' ); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - $note = sprintf( _x('%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview'), $status, $user_id ); |
|
| 72 | + $note = sprintf( _x( '%s: Assigned User ID #%d as the entry creator.', 'First parameter: Success or error of the action. Second: User ID number', 'gravityview' ), $status, $user_id ); |
|
| 73 | 73 | |
| 74 | - do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - '.$note ); |
|
| 74 | + do_action( 'gravityview_log_debug', 'GravityView_Change_Entry_Creator[assign_new_user_to_lead] - ' . $note ); |
|
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | 77 | * @filter `gravityview_disable_change_entry_creator_note` Disable adding a note when changing the entry creator |
| 78 | 78 | * @since 1.21.5 |
| 79 | 79 | * @param boolean $disable Disable the Change Entry Creator note. Default: false. |
| 80 | 80 | */ |
| 81 | - if( apply_filters('gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 81 | + if ( apply_filters( 'gravityview_disable_change_entry_creator_note', false ) ) { |
|
| 82 | 82 | return; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - GravityView_Entry_Notes::add_note( $entry['id'], -1, 'GravityView', $note, 'gravityview' ); |
|
| 85 | + GravityView_Entry_Notes::add_note( $entry[ 'id' ], -1, 'GravityView', $note, 'gravityview' ); |
|
| 86 | 86 | |
| 87 | 87 | } |
| 88 | 88 | |
@@ -94,20 +94,20 @@ discard block |
||
| 94 | 94 | |
| 95 | 95 | // Plugin that was provided here: |
| 96 | 96 | // @link https://gravityview.co/support/documentation/201991205/ |
| 97 | - remove_action("gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 98 | - remove_action("gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 97 | + remove_action( "gform_entry_info", 'gravityview_change_entry_creator_form', 10 ); |
|
| 98 | + remove_action( "gform_after_update_entry", 'gravityview_update_entry_creator', 10 ); |
|
| 99 | 99 | |
| 100 | 100 | // Disable for Gravity Forms Add-ons 3.6.2 and lower |
| 101 | - if( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
| 101 | + if ( class_exists( 'KWS_GF_Change_Lead_Creator' ) ) { |
|
| 102 | 102 | |
| 103 | 103 | $Old_Lead_Creator = new KWS_GF_Change_Lead_Creator; |
| 104 | 104 | |
| 105 | 105 | // Now, no validation is required in the methods; let's hook in. |
| 106 | - remove_action('admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
| 106 | + remove_action( 'admin_init', array( $Old_Lead_Creator, 'set_screen_mode' ) ); |
|
| 107 | 107 | |
| 108 | - remove_action("gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10 ); |
|
| 108 | + remove_action( "gform_entry_info", array( $Old_Lead_Creator, 'add_select' ), 10 ); |
|
| 109 | 109 | |
| 110 | - remove_action("gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
| 110 | + remove_action( "gform_after_update_entry", array( $Old_Lead_Creator, 'update_entry_creator' ), 10 ); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | } |
@@ -119,26 +119,26 @@ discard block |
||
| 119 | 119 | function load() { |
| 120 | 120 | |
| 121 | 121 | // Does GF exist? |
| 122 | - if( !class_exists('GFCommon') ) { |
|
| 122 | + if ( ! class_exists( 'GFCommon' ) ) { |
|
| 123 | 123 | return; |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | // Can the user edit entries? |
| 127 | - if( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 127 | + if ( ! GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_entries' ) ) ) { |
|
| 128 | 128 | return; |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | // If screen mode isn't set, then we're in the wrong place. |
| 132 | - if( empty( $_REQUEST['screen_mode'] ) ) { |
|
| 132 | + if ( empty( $_REQUEST[ 'screen_mode' ] ) ) { |
|
| 133 | 133 | return; |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | // Now, no validation is required in the methods; let's hook in. |
| 137 | - add_action('admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 137 | + add_action( 'admin_init', array( &$this, 'set_screen_mode' ) ); |
|
| 138 | 138 | |
| 139 | - add_action("gform_entry_info", array( &$this, 'add_select' ), 10, 2); |
|
| 139 | + add_action( "gform_entry_info", array( &$this, 'add_select' ), 10, 2 ); |
|
| 140 | 140 | |
| 141 | - add_action("gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2); |
|
| 141 | + add_action( "gform_after_update_entry", array( &$this, 'update_entry_creator' ), 10, 2 ); |
|
| 142 | 142 | |
| 143 | 143 | } |
| 144 | 144 | |
@@ -149,8 +149,8 @@ discard block |
||
| 149 | 149 | function set_screen_mode() { |
| 150 | 150 | |
| 151 | 151 | // If $_GET['screen_mode'] is set to edit, set $_POST value |
| 152 | - if( rgget('screen_mode') === 'edit' ) { |
|
| 153 | - $_POST["screen_mode"] = 'edit'; |
|
| 152 | + if ( rgget( 'screen_mode' ) === 'edit' ) { |
|
| 153 | + $_POST[ "screen_mode" ] = 'edit'; |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | } |
@@ -161,42 +161,42 @@ discard block |
||
| 161 | 161 | * @param int $entry_id Entry ID |
| 162 | 162 | * @return void |
| 163 | 163 | */ |
| 164 | - function update_entry_creator($form, $entry_id) { |
|
| 164 | + function update_entry_creator( $form, $entry_id ) { |
|
| 165 | 165 | global $current_user; |
| 166 | 166 | |
| 167 | 167 | // Update the entry |
| 168 | - $created_by = absint( rgpost('created_by') ); |
|
| 168 | + $created_by = absint( rgpost( 'created_by' ) ); |
|
| 169 | 169 | |
| 170 | 170 | RGFormsModel::update_lead_property( $entry_id, 'created_by', $created_by ); |
| 171 | 171 | |
| 172 | 172 | // If the creator has changed, let's add a note about who it used to be. |
| 173 | - $originally_created_by = rgpost('originally_created_by'); |
|
| 173 | + $originally_created_by = rgpost( 'originally_created_by' ); |
|
| 174 | 174 | |
| 175 | 175 | // If there's no owner and there didn't used to be, keep going |
| 176 | - if( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 176 | + if ( empty( $originally_created_by ) && empty( $created_by ) ) { |
|
| 177 | 177 | return; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | // If the values have changed |
| 181 | - if( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 181 | + if ( absint( $originally_created_by ) !== absint( $created_by ) ) { |
|
| 182 | 182 | |
| 183 | - $user_data = get_userdata($current_user->ID); |
|
| 183 | + $user_data = get_userdata( $current_user->ID ); |
|
| 184 | 184 | |
| 185 | - $user_format = _x('%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview'); |
|
| 185 | + $user_format = _x( '%s (ID #%d)', 'The name and the ID of users who initiated changes to entry ownership', 'gravityview' ); |
|
| 186 | 186 | |
| 187 | - $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview'); |
|
| 187 | + $original_name = $created_by_name = esc_attr_x( 'No User', 'To show that the entry was unassigned from an actual user to no user.', 'gravityview' ); |
|
| 188 | 188 | |
| 189 | - if( !empty( $originally_created_by ) ) { |
|
| 190 | - $originally_created_by_user_data = get_userdata($originally_created_by); |
|
| 189 | + if ( ! empty( $originally_created_by ) ) { |
|
| 190 | + $originally_created_by_user_data = get_userdata( $originally_created_by ); |
|
| 191 | 191 | $original_name = sprintf( $user_format, $originally_created_by_user_data->display_name, $originally_created_by_user_data->ID ); |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - if( !empty( $created_by ) ) { |
|
| 195 | - $created_by_user_data = get_userdata($created_by); |
|
| 194 | + if ( ! empty( $created_by ) ) { |
|
| 195 | + $created_by_user_data = get_userdata( $created_by ); |
|
| 196 | 196 | $created_by_name = sprintf( $user_format, $created_by_user_data->display_name, $created_by_user_data->ID ); |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __('Changed entry creator from %s to %s', 'gravityview'), $original_name, $created_by_name ), 'note' ); |
|
| 199 | + GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $user_data->display_name, sprintf( __( 'Changed entry creator from %s to %s', 'gravityview' ), $original_name, $created_by_name ), 'note' ); |
|
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | } |
@@ -207,9 +207,9 @@ discard block |
||
| 207 | 207 | * @param array $entry GF entry array |
| 208 | 208 | * @return void |
| 209 | 209 | */ |
| 210 | - function add_select($form_id, $entry ) { |
|
| 210 | + function add_select( $form_id, $entry ) { |
|
| 211 | 211 | |
| 212 | - if( rgpost('screen_mode') !== 'edit' ) { |
|
| 212 | + if ( rgpost( 'screen_mode' ) !== 'edit' ) { |
|
| 213 | 213 | return; |
| 214 | 214 | } |
| 215 | 215 | |
@@ -228,23 +228,23 @@ discard block |
||
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | $output = '<label for="change_created_by">'; |
| 231 | - $output .= esc_html__('Change Entry Creator:', 'gravityview'); |
|
| 231 | + $output .= esc_html__( 'Change Entry Creator:', 'gravityview' ); |
|
| 232 | 232 | $output .= '</label>'; |
| 233 | 233 | |
| 234 | 234 | // If there are users who are not being shown, show a warning. |
| 235 | 235 | // TODO: Use AJAX instead of <select> |
| 236 | 236 | $count_users = count_users(); |
| 237 | - if( sizeof( $users ) < $count_users['total_users'] ) { |
|
| 237 | + if ( sizeof( $users ) < $count_users[ 'total_users' ] ) { |
|
| 238 | 238 | $output .= '<p><i class="dashicons dashicons-warning"></i> ' . sprintf( esc_html__( 'The displayed list of users has been trimmed due to the large number of users. %sLearn how to remove this limit%s.', 'gravityview' ), '<a href="https://docs.gravityview.co/article/251-i-only-see-some-users-in-the-change-entry-creator-dropdown" rel="external">', '</a>' ) . '</p>'; |
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | $output .= '<select name="created_by" id="change_created_by" class="widefat">'; |
| 242 | - $output .= '<option value="' . selected( $entry['created_by'], '0', false ) . '"> — '.esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview').' — </option>'; |
|
| 243 | - foreach($users as $user) { |
|
| 244 | - $output .= '<option value="'. $user->ID .'"'. selected( $entry['created_by'], $user->ID, false ).'>'.esc_attr( $user->display_name.' ('.$user->user_nicename.')' ).'</option>'; |
|
| 242 | + $output .= '<option value="' . selected( $entry[ 'created_by' ], '0', false ) . '"> — ' . esc_attr_x( 'No User', 'No user assigned to the entry', 'gravityview' ) . ' — </option>'; |
|
| 243 | + foreach ( $users as $user ) { |
|
| 244 | + $output .= '<option value="' . $user->ID . '"' . selected( $entry[ 'created_by' ], $user->ID, false ) . '>' . esc_attr( $user->display_name . ' (' . $user->user_nicename . ')' ) . '</option>'; |
|
| 245 | 245 | } |
| 246 | 246 | $output .= '</select>'; |
| 247 | - $output .= '<input name="originally_created_by" value="'.esc_attr( $entry['created_by'] ).'" type="hidden" />'; |
|
| 247 | + $output .= '<input name="originally_created_by" value="' . esc_attr( $entry[ 'created_by' ] ) . '" type="hidden" />'; |
|
| 248 | 248 | |
| 249 | 249 | unset( $is_created_by_in_users, $created_by_user, $users, $created_by_id, $count_users ); |
| 250 | 250 | |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | */ |
| 24 | 24 | protected $script_handles = array( |
| 25 | 25 | 'rcp-admin-scripts', |
| 26 | - 'bbq', |
|
| 26 | + 'bbq', |
|
| 27 | 27 | ); |
| 28 | 28 | |
| 29 | 29 | /** |