Project

General

Profile

Bug #15246 » class.user_firstMainGroup.php

Administrator Admin, 2006-01-02 10:55

 
<?php
class user_firstMainGroup {
function checkFirstMainGroup($params,$this) {
# Set $search to the string in the groupname
# that needs to be set as the first group
# for this user.
$search = "typo3";
$groupname = $params['row']['title'];
if (ereg($search, $groupname)) {
$uid = $params['row']['uid'];
$this->firstMainGroup = $uid;
}
return $this;
}
}
?>
(3-3/4)