Changeset 2914562
- Timestamp:
- 05/19/2023 02:24:14 AM (3 years ago)
- Location:
- jobsearch
- Files:
-
- 4 added
- 6 edited
-
frontEnd/job/jobList.php (modified) (2 diffs)
-
jobsearch.php (modified) (1 diff)
-
readme.txt (modified) (7 diffs)
-
tags/2.2.3 (added)
-
tags/2.2.3/readme.txt (added)
-
trunk/frontEnd/job/jobList.php (modified) (2 diffs)
-
trunk/jobsearch.php (modified) (1 diff)
-
trunk/readme.txt (modified) (7 diffs)
-
trunk/tags/2.2.3 (added)
-
trunk/tags/2.2.3/readme.txt (added)
Legend:
- Unmodified
- Added
- Removed
-
jobsearch/frontEnd/job/jobList.php
r2510468 r2914562 84 84 85 85 // Set up the link to send to the api 86 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'keyword', $getParameter["keyword"]); 87 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'jobLanguage', $getParameter["jobLanguage"]); 88 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'type', $getParameter["type"]); 89 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'featured', $attributes['featured']); 90 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'company', $attributes['companyId']); 91 92 foreach ( $displayCategories as $value) { 93 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'category[]',$value); 94 } 86 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'keyword', $getParameter["keyword"]); 87 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'jobLanguage', $getParameter["jobLanguage"]); 88 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'type', $getParameter["type"]); 89 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'featured', $attributes['featured']); 90 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'company', $attributes['companyId']); 91 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'tag', $attributes['tag']); 95 92 96 93 foreach ( $excludedCategories as $value) { … … 98 95 } 99 96 100 foreach ( $getParameter["category"] as $value) { 101 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'category[]',$value); 97 if (!empty($getParameter["category"])){ 98 foreach ( $getParameter["category"] as $value) { 99 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'category[]',$value); 100 } 101 } else { 102 foreach ( $displayCategories as $value) { 103 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'category[]',$value); 104 } 102 105 } 103 106 -
jobsearch/jobsearch.php
r2838261 r2914562 3 3 Plugin Name: Tamago-DB Job Board 4 4 Description: Job board integrated with the ATS/CRM Tamago-DB 5 Version: 2.2. 25 Version: 2.2.3 6 6 Author: Tamago-DB 7 7 Text Domain: jobsearch -
jobsearch/readme.txt
r2674369 r2914562 3 3 Tags: job-board,recruiting,api,job-search,job,recruitment,recruit,job,tamago,tamago-db, 4 4 Requires at least: 4.9 5 Tested up to: 5.95 Tested up to: 6.2.1 6 6 Requires PHP: 7.1 7 7 … … 22 22 2. Activate the plugin through the 'Plugins' screen in WordPress 23 23 3. Use the Settings->Plugin Name screen to configure the plugin 24 4. Insert api link and api key provided by Tamago-DB then update it to set -up the plugin24 4. Insert api link and api key provided by Tamago-DB then update it to set up the plugin 25 25 5. Use the shortcode on the widget area or pages to make the plugin active 26 26 … … 30 30 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 31 31 searchHidden: set to true to hide the search form on the result page 32 api: if you set-up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 32 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 33 companyId : limit the job search to jobs belonging to this company (use the company ID) 34 tag : limit the job search to jobs with this tag (use the tag ID) 33 35 34 36 [jobsearch_apply] - [tdb_job_board_apply] / Apply for candidate 35 37 Parameters: 36 38 redirect-link: redirect to a different page after submitting the registration form 37 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)39 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 38 40 39 41 [jobsearch_last_job] - [tdb_job_board_last_job] / Widget who shown latest published jobs 40 42 Parameters: 41 43 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 42 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)44 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 43 45 44 46 [jobsearch_category] - [tdb_job_board_category] / Widget who shown some specific jobs on category from Tamago-db 45 47 Parameters: 46 48 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 47 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)49 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 48 50 49 51 [jobsearch_tag] - [tdb_job_board_tag] / Widget who shown some specific jobs on tag from Tamago-db … … 52 54 tag: tag ID 53 55 title: widget title 54 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)56 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 55 57 56 58 [tdb_search_form] / Search form … … 58 60 jobLanguage: filter on the language of the job 59 61 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 60 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)62 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 61 63 62 64 [tdb_list_form] / List form … … 67 69 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 68 70 urllist: pages you need to redirect to go to the detail 69 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)71 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 70 72 71 73 [jobsearch_featured] - [tdb_job_board_featured] / List featured jobs from a given Company ID … … 73 75 company: ID of the company jobs will be listed. 74 76 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 75 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)77 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 76 78 77 79 [jobsearch_apply_btn] - [tdb_job_board_apply_btn] / Create a button who redirect to the apply pages and get the current page title -
jobsearch/trunk/frontEnd/job/jobList.php
r2510468 r2914562 84 84 85 85 // Set up the link to send to the api 86 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'keyword', $getParameter["keyword"]); 87 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'jobLanguage', $getParameter["jobLanguage"]); 88 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'type', $getParameter["type"]); 89 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'featured', $attributes['featured']); 90 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'company', $attributes['companyId']); 91 92 foreach ( $displayCategories as $value) { 93 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'category[]',$value); 94 } 86 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'keyword', $getParameter["keyword"]); 87 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'jobLanguage', $getParameter["jobLanguage"]); 88 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'type', $getParameter["type"]); 89 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'featured', $attributes['featured']); 90 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'company', $attributes['companyId']); 91 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi, 'tag', $attributes['tag']); 95 92 96 93 foreach ( $excludedCategories as $value) { … … 98 95 } 99 96 100 foreach ( $getParameter["category"] as $value) { 101 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'category[]',$value); 97 if (!empty($getParameter["category"])){ 98 foreach ( $getParameter["category"] as $value) { 99 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'category[]',$value); 100 } 101 } else { 102 foreach ( $displayCategories as $value) { 103 $linkApi = $jobHelper->tdb_jb_updt_link_to_send($linkApi,'category[]',$value); 104 } 102 105 } 103 106 -
jobsearch/trunk/jobsearch.php
r2838261 r2914562 3 3 Plugin Name: Tamago-DB Job Board 4 4 Description: Job board integrated with the ATS/CRM Tamago-DB 5 Version: 2.2. 25 Version: 2.2.3 6 6 Author: Tamago-DB 7 7 Text Domain: jobsearch -
jobsearch/trunk/readme.txt
r2674369 r2914562 3 3 Tags: job-board,recruiting,api,job-search,job,recruitment,recruit,job,tamago,tamago-db, 4 4 Requires at least: 4.9 5 Tested up to: 5.95 Tested up to: 6.2.1 6 6 Requires PHP: 7.1 7 7 … … 22 22 2. Activate the plugin through the 'Plugins' screen in WordPress 23 23 3. Use the Settings->Plugin Name screen to configure the plugin 24 4. Insert api link and api key provided by Tamago-DB then update it to set -up the plugin24 4. Insert api link and api key provided by Tamago-DB then update it to set up the plugin 25 25 5. Use the shortcode on the widget area or pages to make the plugin active 26 26 … … 30 30 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 31 31 searchHidden: set to true to hide the search form on the result page 32 api: if you set-up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 32 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 33 companyId : limit the job search to jobs belonging to this company (use the company ID) 34 tag : limit the job search to jobs with this tag (use the tag ID) 33 35 34 36 [jobsearch_apply] - [tdb_job_board_apply] / Apply for candidate 35 37 Parameters: 36 38 redirect-link: redirect to a different page after submitting the registration form 37 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)39 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 38 40 39 41 [jobsearch_last_job] - [tdb_job_board_last_job] / Widget who shown latest published jobs 40 42 Parameters: 41 43 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 42 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)44 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 43 45 44 46 [jobsearch_category] - [tdb_job_board_category] / Widget who shown some specific jobs on category from Tamago-db 45 47 Parameters: 46 48 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 47 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)49 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 48 50 49 51 [jobsearch_tag] - [tdb_job_board_tag] / Widget who shown some specific jobs on tag from Tamago-db … … 52 54 tag: tag ID 53 55 title: widget title 54 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)56 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 55 57 56 58 [tdb_search_form] / Search form … … 58 60 jobLanguage: filter on the language of the job 59 61 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 60 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)62 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 61 63 62 64 [tdb_list_form] / List form … … 67 69 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 68 70 urllist: pages you need to redirect to go to the detail 69 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)71 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 70 72 71 73 [jobsearch_featured] - [tdb_job_board_featured] / List featured jobs from a given Company ID … … 73 75 company: ID of the company jobs will be listed. 74 76 url: add this parameter if you use this shortcode on another page than the main job list page. The URL should be the URL of the job list page. 75 api: if you set -up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one)77 api: if you set up multiple api link on admin panel, you can give the number of the api you want to use(by default it will be the first one) 76 78 77 79 [jobsearch_apply_btn] - [tdb_job_board_apply_btn] / Create a button who redirect to the apply pages and get the current page title
Note: See TracChangeset
for help on using the changeset viewer.