Changeset 2514553
- Timestamp:
- 04/14/2021 04:12:02 AM (5 years ago)
- Location:
- jobsearch
- Files:
-
- 8 edited
-
frontEnd/search/jobFormSearch.php (modified) (1 diff)
-
helper/GlobalLoader.php (modified) (2 diffs)
-
helper/helper.php (modified) (2 diffs)
-
jobsearch.php (modified) (1 diff)
-
trunk/frontEnd/search/jobFormSearch.php (modified) (1 diff)
-
trunk/helper/GlobalLoader.php (modified) (2 diffs)
-
trunk/helper/helper.php (modified) (2 diffs)
-
trunk/jobsearch.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jobsearch/frontEnd/search/jobFormSearch.php
r2510924 r2514553 215 215 $htmlTags3 = ''; 216 216 $htmlTags4 = ''; 217 217 218 $tags1 = $helper->getTagsField(1, $getParameter["tags"]); 218 219 $tags2 = $helper->getTagsField(2, $getParameter["tags"]); -
jobsearch/helper/GlobalLoader.php
r2510933 r2514553 62 62 // job form 63 63 if($attributes['type'] != 'apply' && $attributes['jobId'] == ''){ 64 if( $attributes['send'] != true &&$attributes['searchHidden'] != true){64 if( $attributes['searchHidden'] != true){ 65 65 $this->tdb_jb_get_opt_api($attributes['api'], "search"); 66 66 $jobFormSearch->tdb_jb_show($attributes, $urlArray); … … 117 117 // search form 118 118 if ($attributes['type'] <> 'apply' && $attributes['jobId'] == '') { 119 if((isset($_GET["send"]) && isset($_GET['searchHidden']) && $_GET['searchHidden'] == 'true') == false){ 119 // show the search only if search hidden is not set to true 120 121 if((isset($_GET['searchHidden']) && $_GET['searchHidden'] == 'true') == false){ 120 122 $this->tdb_jb_get_opt_api($attributes['api'] , "search"); 121 122 123 $urlArray = $helper->tdb_jb_get_page_link(); 123 124 $jobFormSearch->tdb_jb_show($attributes, $urlArray); -
jobsearch/helper/helper.php
r2510924 r2514553 1838 1838 } 1839 1839 1840 /* tags for the search form */1841 function getTagsField($number, $ getParameters){1840 /* tags for the search form (number is the tag group order, 1 to 4 now, get parameters is the search result*/ 1841 function getTagsField($number, $tagsGetParameters){ 1842 1842 global $gGroupTags; 1843 1843 global $gTags; … … 1865 1865 // set up the list option 1866 1866 foreach($gTags[$tagGroupSelected] as $id => $name){ 1867 if(i n_array($id, $getParameters)){1867 if(is_array($tagsGetParameters) && in_array($id, $tagsGetParameters)){ 1868 1868 $selected = "selected='true' "; 1869 1869 } else { -
jobsearch/jobsearch.php
r2510924 r2514553 3 3 Plugin Name: Tamago-DB Job Board 4 4 Description: Job board integrated with the ATS/CRM Tamago-DB 5 Version: 2.0. 05 Version: 2.0.1 6 6 Author: Tamago-DB 7 7 Text Domain: jobsearch -
jobsearch/trunk/frontEnd/search/jobFormSearch.php
r2510924 r2514553 215 215 $htmlTags3 = ''; 216 216 $htmlTags4 = ''; 217 217 218 $tags1 = $helper->getTagsField(1, $getParameter["tags"]); 218 219 $tags2 = $helper->getTagsField(2, $getParameter["tags"]); -
jobsearch/trunk/helper/GlobalLoader.php
r2510933 r2514553 62 62 // job form 63 63 if($attributes['type'] != 'apply' && $attributes['jobId'] == ''){ 64 if( $attributes['send'] != true &&$attributes['searchHidden'] != true){64 if( $attributes['searchHidden'] != true){ 65 65 $this->tdb_jb_get_opt_api($attributes['api'], "search"); 66 66 $jobFormSearch->tdb_jb_show($attributes, $urlArray); … … 117 117 // search form 118 118 if ($attributes['type'] <> 'apply' && $attributes['jobId'] == '') { 119 if((isset($_GET["send"]) && isset($_GET['searchHidden']) && $_GET['searchHidden'] == 'true') == false){ 119 // show the search only if search hidden is not set to true 120 121 if((isset($_GET['searchHidden']) && $_GET['searchHidden'] == 'true') == false){ 120 122 $this->tdb_jb_get_opt_api($attributes['api'] , "search"); 121 122 123 $urlArray = $helper->tdb_jb_get_page_link(); 123 124 $jobFormSearch->tdb_jb_show($attributes, $urlArray); -
jobsearch/trunk/helper/helper.php
r2510924 r2514553 1838 1838 } 1839 1839 1840 /* tags for the search form */1841 function getTagsField($number, $ getParameters){1840 /* tags for the search form (number is the tag group order, 1 to 4 now, get parameters is the search result*/ 1841 function getTagsField($number, $tagsGetParameters){ 1842 1842 global $gGroupTags; 1843 1843 global $gTags; … … 1865 1865 // set up the list option 1866 1866 foreach($gTags[$tagGroupSelected] as $id => $name){ 1867 if(i n_array($id, $getParameters)){1867 if(is_array($tagsGetParameters) && in_array($id, $tagsGetParameters)){ 1868 1868 $selected = "selected='true' "; 1869 1869 } else { -
jobsearch/trunk/jobsearch.php
r2510924 r2514553 3 3 Plugin Name: Tamago-DB Job Board 4 4 Description: Job board integrated with the ATS/CRM Tamago-DB 5 Version: 2.0. 05 Version: 2.0.1 6 6 Author: Tamago-DB 7 7 Text Domain: jobsearch
Note: See TracChangeset
for help on using the changeset viewer.