add Function tag::show_list

This commit is contained in:
Dany De Bontridder 2013-09-19 14:24:39 +00:00
parent 2a8d30727b
commit 9684246f4f

View file

@ -24,10 +24,13 @@ class Tag
{
function __construct($p_cn)
{
$this->cn=$p_cn;
$this->data=new Tag_SQL($p_cn);
}
function show_list()
{
$ret=$this->data->seek(' order by t_tag');
if ( $this->cn->count($ret) == 0) return "";
}
}