more plugin hooks
This commit is contained in:
parent
d6a75a0391
commit
f6556e0a72
|
@ -499,7 +499,9 @@ function get_atom_elements($feed,$item) {
|
||||||
$res['target'] .= '</target>' . "\n";
|
$res['target'] .= '</target>' . "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
// call_hooks('parse_atom', array('feed' => $feed, 'item' => $item, 'result' => $res));
|
$arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
|
||||||
|
|
||||||
|
call_hooks('parse_atom', $arr);
|
||||||
|
|
||||||
return $res;
|
return $res;
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,7 +83,7 @@ function directory_content(&$a) {
|
||||||
if(strlen($rr['gender']))
|
if(strlen($rr['gender']))
|
||||||
$details .= '<br />Gender: ' . $rr['gender'];
|
$details .= '<br />Gender: ' . $rr['gender'];
|
||||||
|
|
||||||
$o .= replace_macros($tpl,array(
|
$entry = replace_macros($tpl,array(
|
||||||
'$id' => $rr['id'],
|
'$id' => $rr['id'],
|
||||||
'$profile-link' => $profile_link,
|
'$profile-link' => $profile_link,
|
||||||
'$photo' => $rr[$photo],
|
'$photo' => $rr[$photo],
|
||||||
|
@ -94,7 +94,14 @@ function directory_content(&$a) {
|
||||||
|
|
||||||
));
|
));
|
||||||
|
|
||||||
|
$arr = array('contact' => $rr, 'entry' => $entry);
|
||||||
|
|
||||||
|
call_hooks('directory_item', $arr);
|
||||||
|
|
||||||
|
$o .= $entry;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$o .= "<div class=\"directory-end\" ></div>\r\n";
|
$o .= "<div class=\"directory-end\" ></div>\r\n";
|
||||||
$o .= paginate($a);
|
$o .= paginate($a);
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,16 @@ function parse_url_content(&$a) {
|
||||||
|
|
||||||
$template = "<a href=\"%s\" >%s</a>%s";
|
$template = "<a href=\"%s\" >%s</a>%s";
|
||||||
|
|
||||||
|
|
||||||
|
$arr = array('url' => $url, 'text' => '');
|
||||||
|
|
||||||
|
call_hooks('parse_link', $arr);
|
||||||
|
|
||||||
|
if(strlen($arr['text'])) {
|
||||||
|
echo $arr['text'];
|
||||||
|
killme();
|
||||||
|
}
|
||||||
|
|
||||||
if($url)
|
if($url)
|
||||||
$s = fetch_url($url);
|
$s = fetch_url($url);
|
||||||
else {
|
else {
|
||||||
|
@ -18,6 +28,7 @@ function parse_url_content(&$a) {
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if(! $s) {
|
if(! $s) {
|
||||||
echo sprintf($template,$url,$url,'');
|
echo sprintf($template,$url,$url,'');
|
||||||
killme();
|
killme();
|
||||||
|
|
Loading…
Reference in a new issue