Plugin Directory

Changeset 2307897


Ignore:
Timestamp:
05/19/2020 11:27:05 AM (6 years ago)
Author:
yaroslawww
Message:

v0.0.4

Location:
wp-bullhorn-staffing
Files:
3 edited
8 copied

Legend:

Unmodified
Added
Removed
  • wp-bullhorn-staffing/tags/0.0.4/bootstrap.php

    r2307853 r2307897  
    44 * Plugin URI:
    55 * Description: Bullhorn Staffing synchronisation plugin
    6  * Version: 0.0.3
     6 * Version: 0.0.4
    77 * Author: Think studio
    88 * Author URI: https://think.studio/
  • wp-bullhorn-staffing/tags/0.0.4/src/Domain/Entities/CandidateFiles.php

    r2307839 r2307897  
    116116    }
    117117
    118     public function resumeParseToCandidate($fileContent, $name)
     118    public function resumeParseToCandidate($filePath, $name)
    119119    {
    120120        $response = \WPBullhornStaffing::instance()->request(
     
    129129                    [
    130130                        'name'     => 'FileContents',
    131                         'contents' => $fileContent,
     131                        'contents' => fopen($filePath, 'r'),
    132132                        'filename' => $name
    133133                    ],
  • wp-bullhorn-staffing/trunk/bootstrap.php

    r2307853 r2307897  
    44 * Plugin URI:
    55 * Description: Bullhorn Staffing synchronisation plugin
    6  * Version: 0.0.3
     6 * Version: 0.0.4
    77 * Author: Think studio
    88 * Author URI: https://think.studio/
  • wp-bullhorn-staffing/trunk/src/Domain/Entities/CandidateFiles.php

    r2307839 r2307897  
    116116    }
    117117
    118     public function resumeParseToCandidate($fileContent, $name)
     118    public function resumeParseToCandidate($filePath, $name)
    119119    {
    120120        $response = \WPBullhornStaffing::instance()->request(
     
    129129                    [
    130130                        'name'     => 'FileContents',
    131                         'contents' => $fileContent,
     131                        'contents' => fopen($filePath, 'r'),
    132132                        'filename' => $name
    133133                    ],
Note: See TracChangeset for help on using the changeset viewer.