Changeset 2471396
- Timestamp:
- 02/09/2021 08:16:53 AM (5 years ago)
- Location:
- prosolution-wp-client/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (2 diffs)
-
admin/class-prosolwpclient-admin.php (modified) (1 diff)
-
admin/js/prosolwpclient-setting.js (modified) (1 diff)
-
includes/class-setting.php (modified) (2 diffs)
-
prosolwpclient.php (modified) (2 diffs)
-
public/class-prosolwpclient-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
prosolution-wp-client/trunk/README.txt
r2466943 r2471396 6 6 Tested up to: 4.9.5 7 7 Requires PHP: 5.6 8 Stable tag: 1.7. 48 Stable tag: 1.7.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 69 = 1.7.5 = 70 * Fixed default office setting's selected option set to actual value 71 * Fixed privacy policy setting policy 1 and ppvc_date always set to mandatory 72 * Fixed privacy policy setting's activate based on selected site in application form 68 73 69 74 = 1.7.4 = -
prosolution-wp-client/trunk/admin/class-prosolwpclient-admin.php
r2464169 r2471396 185 185 $is_api_setup = CBXProSolWpClient_Helper::proSol_isApiSetup($issite); 186 186 $api_config = CBXProSolWpClient_Helper::proSol_getApiConfig($issite); 187 187 188 188 if ( $page_name == 'prosolutionoverview' && $task == 'syncall' && $is_api_setup ) { 189 189 $this->proSol_allTableSync(); //after done redirect or die from ajax -
prosolution-wp-client/trunk/admin/js/prosolwpclient-setting.js
r2460136 r2471396 165 165 if(defselsite == ''){ 166 166 $('select#selsite option\[value=0\]').attr('selected','selected'); 167 defselsite=0; 168 document.cookie = "selsite="+defselsite; 167 169 }else{ 168 170 $('select#selsite option\[value='+defselsite+'\]').attr('selected','selected'); -
prosolution-wp-client/trunk/includes/class-setting.php
r2454627 r2471396 155 155 } 156 156 add_settings_section( $section['id'], $section['title'], $callback, $section['id'] ); 157 } 158 157 } 159 158 160 159 //register settings fields … … 845 844 846 845 foreach ( $args['options'] as $key => $label ) { 847 if( in_array($args['id'],$selectlist)){846 if($value=='' && $isrec[$issite.'enable_recruitment'] == 'on'){ 848 847 $def_select= $key=='1' ? 'selected' : ''; 849 848 $html .= sprintf( '<option value="%s"%s>%s</option>', $key, $def_select, $label ); -
prosolution-wp-client/trunk/prosolwpclient.php
r2466943 r2471396 17 17 * Plugin URI: https://prosolution.com/produkte-und-services/workexpert.html 18 18 * Description: WordPress client for ProSolution 19 * Version: 1.7. 419 * Version: 1.7.5 20 20 * Author: ProSolution 21 21 * Author URI: https://www.prosolution.com … … 39 39 40 40 defined('PROSOLWPCLIENT_PLUGIN_NAME') or define('PROSOLWPCLIENT_PLUGIN_NAME', 'prosolwpclient'); 41 defined('PROSOLWPCLIENT_PLUGIN_VERSION') or define('PROSOLWPCLIENT_PLUGIN_VERSION', '1.7. 4');41 defined('PROSOLWPCLIENT_PLUGIN_VERSION') or define('PROSOLWPCLIENT_PLUGIN_VERSION', '1.7.5'); 42 42 defined('PROSOLWPCLIENT_BASE_NAME') or define('PROSOLWPCLIENT_BASE_NAME', plugin_basename(__FILE__)); 43 43 defined('PROSOLWPCLIENT_ROOT_PATH') or define('PROSOLWPCLIENT_ROOT_PATH', plugin_dir_path(__FILE__)); -
prosolution-wp-client/trunk/public/class-prosolwpclient-public.php
r2466943 r2471396 869 869 $default_office = $genset[$issite.'default_office']; 870 870 } 871 871 872 //for recruitment additional fields 872 873 if ( $genset[$issite.'enable_recruitment'] == 'on' ) {
Note: See TracChangeset
for help on using the changeset viewer.