egroupware/cybro_profile/inc/class.so_cprofile.inc.php
2008-01-03 13:29:36 +00:00

30 lines
345 B
PHP

<?php
/**
*
*
*
**/
class so_cprofile
{
var $sqldb;
function so_cprofile()
{
$this->sqldb = $GLOBALS['egw']->db;
}
function getegwlangs()
{
$this->sqldb->select('egw_languages','*','',__LINE__,__FILE__);
while($this->sqldb->next_record())
{
$langs[] = $this->sqldb->row();
}
return $langs;
}
}