示例#1
0
<?php

require_once realpath($_SERVER['DOCUMENT_ROOT']) . '/includes/init_member.inc.php';
require_once realpath($_SERVER['DOCUMENT_ROOT']) . '/includes/init_trigger.inc.php';
echo list_person_links();
示例#2
0
function list_persons()
{
    global $lang_code;
    global $span_interfaces;
    $output = '';
    $email = get_member_email();
    $persons = load_persons();
    usort($persons, 'sort_fullname_ascend');
    $output .= '<div class="dates-box">';
    $output .= '<h2 id="persons_list_h2" class="dates-header">' . translate_span('list_persons') . '</h2>';
    $output .= '<ul class="dates" id="persons_list">';
    $output .= list_person_links();
    $output .= '</ul>';
    $output .= '<div class="clear"></div>';
    $output .= '</div>';
    return $output;
}