Пример #1
0
function updateMaxMenteesPerMentor()
{
    include_once "mentor_maximum.php";
    $currentValue = retrieveMaxMenteesPerMentor();
    $minValue = calcMinMaxMenteesPerMentor();
    if ($currentValue < $minValue) {
        setMaxMenteesPerMentor($minValue);
    }
}
Пример #2
0
function getMaxMenteesPerMentor()
{
    print retrieveMaxMenteesPerMentor();
}