Conditions | 2 |
Paths | 2 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function shareUrl() |
||
11 | { |
||
12 | $titleArray = $this->page->get(array('title')); |
||
13 | |||
14 | if (isset($titleArray['title'])) { |
||
15 | $title = $titleArray['title']; |
||
16 | } else { |
||
17 | $title = $this->page->getUrl(); |
||
18 | } |
||
19 | |||
20 | $postText = '<a href="'.$this->page->getUrl().'">'.$title.'</a>'; |
||
21 | |||
22 | return $this->buildUrl( |
||
23 | 'http://www.livejournal.com/update.bml', |
||
24 | array('title' => 'subject'), |
||
25 | array('event' => $postText) |
||
26 | ); |
||
27 | } |
||
28 | } |
||
29 |