| Conditions | 3 |
| Paths | 4 |
| Total Lines | 21 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function shareUrl() |
||
| 11 | { |
||
| 12 | $info = $this->page->get(); |
||
| 13 | $subject = $info['title'] ?: $info['url']; |
||
| 14 | |||
| 15 | if (empty($info['text'])) { |
||
| 16 | $body = $info['url']; |
||
| 17 | } else { |
||
| 18 | $body = $info['text']."\n".$info['url']; |
||
| 19 | } |
||
| 20 | |||
| 21 | return $this->buildUrl( |
||
| 22 | 'mailto:', |
||
| 23 | null, |
||
| 24 | array( |
||
| 25 | 'subject' => $subject, |
||
| 26 | 'body' => $body, |
||
| 27 | ), |
||
| 28 | static::RFC3986 |
||
| 29 | ); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |