| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | protected function extract($job) |
||
| 26 | { |
||
| 27 | $this->job = $job; |
||
| 28 | $this->setUriApply(); |
||
| 29 | $this->setOrganizationInfo(); |
||
| 30 | $this->setLocation(); |
||
| 31 | $this->setDescription(); |
||
| 32 | $this->setTemplate(); |
||
| 33 | |||
| 34 | $this->container['descriptionEditable'] = $job->templateValues->description; |
||
| 35 | $this->container['benefits'] = $job->templateValues->benefits; |
||
| 36 | $this->container['requirements'] = $job->templateValues->requirements; |
||
| 37 | $this->container['qualifications'] = $job->templateValues->qualifications; |
||
| 38 | $this->container['title'] = $job->templateValues->title; |
||
| 39 | $this->container['headTitle'] = strip_tags($job->templateValues->title); |
||
| 40 | |||
| 41 | $this->container['contactEmail'] = strip_tags($job->contactEmail); |
||
| 42 | return $this; |
||
| 43 | } |
||
| 44 | } |
||
| 45 |