Ejemplo n.º 1
0
/**
* @desc Obtiene el primer parent de la sección especificada
* @param int Id de la sección
*/
function ahBuildReference($id)
{
    global $xoopsModuleConfig, $tpl;
    $ref = new AHReference($id);
    if ($ref->isNew()) {
        return;
    }
    $ret = "<a name='top{$id}'></a><a href='javascript:;' " . (!$xoopsModuleConfig['refs_method'] ? "title='" . $ref->title() . "' " : " ");
    if ($xoopsModuleConfig['refs_method']) {
        $ret .= "onclick=\"doReference(event,'{$id}');\"";
    } else {
        $ret .= "onclick=\"showReference({$id},'{$xoopsModuleConfig['refs_color']}');\"";
        $tpl->append('references', array('id' => $ref->id(), 'text' => $ref->reference()));
        $tpl->assign('have_refs', 1);
    }
    $ret .= "><img src='" . XOOPS_URL . "/modules/ahelp/images/reflink.png' align='textop' " . (!$xoopsModuleConfig['refs_method'] ? "alt='" . $ref->title() . "'" : "") . " /></a>";
    return $ret;
}
Ejemplo n.º 2
0
<?php

// $Id$
// --------------------------------------------------------------
// Ability Help
// http://www.redmexico.com.mx
// http://www.exmsystem.net
// --------------------------------------------
// @author BitC3R0 <*****@*****.**>
// @license: GPL v2
define('AH_LOCATION', 'references');
include '../../mainfile.php';
$id = isset($_GET['id']) ? intval($_GET['id']) : 0;
if ($id <= 0) {
    die(_MS_AH_NOID);
}
$ref = new AHReference($id);
if ($ref->isNew()) {
    die(_MS_AH_NOEXISTS);
}
echo $ref->reference();