mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-02 04:43:46 +01:00
30 lines
345 B
PHP
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;
|
||
|
}
|
||
|
}
|
||
|
|