per design spec, hide global directory if update url not present
This commit is contained in:
parent
4c2fbc81a0
commit
0ebd4aa783
|
@ -10,10 +10,16 @@ function directory_content(&$a) {
|
||||||
|
|
||||||
$tpl .= load_view_file('view/directory_header.tpl');
|
$tpl .= load_view_file('view/directory_header.tpl');
|
||||||
|
|
||||||
|
$globaldir = '';
|
||||||
|
$gdirpath = dirname(get_config('system','directory_submit_url'));
|
||||||
|
if(strlen($gdirpath)) {
|
||||||
|
$globaldir = '<ul><li><div id="global-directory-link"><a href="'
|
||||||
|
. $gdirpath . '">' . t('Global Directory') . '</a></div></li></ul>';
|
||||||
|
}
|
||||||
|
|
||||||
$o .= replace_macros($tpl, array(
|
$o .= replace_macros($tpl, array(
|
||||||
'$search' => $search,
|
'$search' => $search,
|
||||||
|
'$globaldir' => $globaldir,
|
||||||
'$finding' => (strlen($search) ? '<h4>' . t('Finding: ') . "'" . $search . "'" . '</h4>' : "")
|
'$finding' => (strlen($search) ? '<h4>' . t('Finding: ') . "'" . $search . "'" . '</h4>' : "")
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<h1>Site Directory</h1>
|
<h1>Site Directory</h1>
|
||||||
|
|
||||||
<ul><li><div id="global-directory-link"><a href="http://dir.dfrn.org">Global Directory</a></div></li></ul>
|
$globaldir
|
||||||
|
|
||||||
$finding
|
$finding
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue