Changeset 1677085
- Timestamp:
- 06/12/2017 11:47:18 PM (9 years ago)
- Location:
- followize-extension-gf
- Files:
-
- 6 edited
- 1 copied
-
tags/0.2.2 (copied) (copied from followize-extension-gf/trunk)
-
tags/0.2.2/class-gf-followize.php (modified) (3 diffs)
-
tags/0.2.2/followize-extension-gf.php (modified) (2 diffs)
-
tags/0.2.2/readme.txt (modified) (4 diffs)
-
trunk/class-gf-followize.php (modified) (3 diffs)
-
trunk/followize-extension-gf.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
followize-extension-gf/tags/0.2.2/class-gf-followize.php
r1650674 r1677085 252 252 private function _get_fields( $fields_map, $form, $entry ) 253 253 { 254 $fields = array(); 255 256 if ( ! $this->is_valid_array( $fields_map ) ) { 257 return $fields; 258 } 259 254 260 foreach ( $fields_map as $key => $value ) { 255 261 $fields[ $key ] = Utils::array_to_string( $this->get_field_value( $form, $entry, $value ) ); … … 261 267 private function _get_custom_fields( $custom_fields_map, $form, $entry ) 262 268 { 269 $fields = array(); 270 271 if ( ! $this->is_valid_array( $custom_fields_map ) ) { 272 return $fields; 273 } 274 263 275 foreach ( $custom_fields_map as $key => $value ) { 264 276 $fields[ $key ] = Utils::array_to_string( $this->get_field_value( $form, $entry, $value ) ); … … 311 323 return $list; 312 324 } 325 326 public function is_valid_array( $array ) { 327 return ( is_array( $array ) && ! empty( $array ) ); 328 } 313 329 } -
followize-extension-gf/tags/0.2.2/followize-extension-gf.php
r1671855 r1677085 3 3 Plugin Name: Followize Extension - Gravity Forms 4 4 Plugin URI: https://www.followize.com.br/ 5 Version: 0.2. 15 Version: 0.2.2 6 6 Author: Followize 7 7 Author URI: https://www.followize.com.br/ … … 25 25 const PLUGIN_SLUG = 'followize-extension-gf'; 26 26 const API_URL = 'https://www.followize.com.br/api/v2/Leads/'; 27 const VERSION = '0.2. 1';27 const VERSION = '0.2.2'; 28 28 29 29 public static function uses( $class_name, $location ) -
followize-extension-gf/tags/0.2.2/readme.txt
r1671855 r1677085 1 1 === Followize Extension - Gravity Forms === 2 2 3 Contributors: followize, daniel-developer 3 4 Tags: CRM, CRM tools, lead capture, lead collection, lead management, lead tracking, leads, gf, gravity forms 4 5 Requires at least: 4.6 5 6 Tested up to: 4.8 6 Stable tag: 0.2. 17 Stable tag: 0.2.2 7 8 License: GPLv2 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 11 12 12 13 == Description == 14 13 15 Este plugin foi desenvolvido para possibilitar a integração do Gravity Forms ao Followize, um software de gestão de leads capaz de organizar e padronizar o processo de atendimento, além de analisar o desempenho da equipe comercial e ações de marketing de uma maneira objetiva, possibilitando mais produtividade e, é claro, mais lucros. 14 16 … … 18 20 19 21 == Installation == 22 20 23 1. Faça upload deste plugin em seu WordPress, e ative-o; 21 24 2. Entre no menu lateral "Formulários > Configurações > Followize"; … … 26 29 27 30 == Screenshots == 31 28 32 1. Configurações gerais do plugin 29 33 2. Configuração do feed 30 34 31 35 == Changelog == 36 37 = 0.2.2 - 12-06-2017 = 38 39 * Validação de entrada dos campos 32 40 33 41 = 0.2.1 - 06-06-2017 = -
followize-extension-gf/trunk/class-gf-followize.php
r1650674 r1677085 252 252 private function _get_fields( $fields_map, $form, $entry ) 253 253 { 254 $fields = array(); 255 256 if ( ! $this->is_valid_array( $fields_map ) ) { 257 return $fields; 258 } 259 254 260 foreach ( $fields_map as $key => $value ) { 255 261 $fields[ $key ] = Utils::array_to_string( $this->get_field_value( $form, $entry, $value ) ); … … 261 267 private function _get_custom_fields( $custom_fields_map, $form, $entry ) 262 268 { 269 $fields = array(); 270 271 if ( ! $this->is_valid_array( $custom_fields_map ) ) { 272 return $fields; 273 } 274 263 275 foreach ( $custom_fields_map as $key => $value ) { 264 276 $fields[ $key ] = Utils::array_to_string( $this->get_field_value( $form, $entry, $value ) ); … … 311 323 return $list; 312 324 } 325 326 public function is_valid_array( $array ) { 327 return ( is_array( $array ) && ! empty( $array ) ); 328 } 313 329 } -
followize-extension-gf/trunk/followize-extension-gf.php
r1671855 r1677085 3 3 Plugin Name: Followize Extension - Gravity Forms 4 4 Plugin URI: https://www.followize.com.br/ 5 Version: 0.2. 15 Version: 0.2.2 6 6 Author: Followize 7 7 Author URI: https://www.followize.com.br/ … … 25 25 const PLUGIN_SLUG = 'followize-extension-gf'; 26 26 const API_URL = 'https://www.followize.com.br/api/v2/Leads/'; 27 const VERSION = '0.2. 1';27 const VERSION = '0.2.2'; 28 28 29 29 public static function uses( $class_name, $location ) -
followize-extension-gf/trunk/readme.txt
r1671855 r1677085 1 1 === Followize Extension - Gravity Forms === 2 2 3 Contributors: followize, daniel-developer 3 4 Tags: CRM, CRM tools, lead capture, lead collection, lead management, lead tracking, leads, gf, gravity forms 4 5 Requires at least: 4.6 5 6 Tested up to: 4.8 6 Stable tag: 0.2. 17 Stable tag: 0.2.2 7 8 License: GPLv2 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 11 12 12 13 == Description == 14 13 15 Este plugin foi desenvolvido para possibilitar a integração do Gravity Forms ao Followize, um software de gestão de leads capaz de organizar e padronizar o processo de atendimento, além de analisar o desempenho da equipe comercial e ações de marketing de uma maneira objetiva, possibilitando mais produtividade e, é claro, mais lucros. 14 16 … … 18 20 19 21 == Installation == 22 20 23 1. Faça upload deste plugin em seu WordPress, e ative-o; 21 24 2. Entre no menu lateral "Formulários > Configurações > Followize"; … … 26 29 27 30 == Screenshots == 31 28 32 1. Configurações gerais do plugin 29 33 2. Configuração do feed 30 34 31 35 == Changelog == 36 37 = 0.2.2 - 12-06-2017 = 38 39 * Validação de entrada dos campos 32 40 33 41 = 0.2.1 - 06-06-2017 =
Note: See TracChangeset
for help on using the changeset viewer.