function islink($field, $value, $fieldinfo)
{
extract($fieldinfo);
if($value)
{
$linkurl = $this->content_url;
$disabled = '';
$checked = 'checked';
}
else
{
$value = $defaultvalue;
$disabled = 'disabled';
$checked = '';
}
$strings = '
如果使用转向链接则点击标题就直接跳转而内容设置无效';
return $strings;
}