egroupware/cybro_profile/inc/class.so_cprofile.inc.php

30 lines
345 B
PHP
Raw Normal View History

2008-01-03 14:29:36 +01:00
<?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;
}
}