Example #1
0
function updateMaxMenteesPerMentor()
{
    include_once "mentor_maximum.php";
    $currentValue = retrieveMaxMenteesPerMentor();
    $minValue = calcMinMaxMenteesPerMentor();
    if ($currentValue < $minValue) {
        setMaxMenteesPerMentor($minValue);
    }
}
Example #2
0
function getMinMaxMenteesPerMentor()
{
    $minMenteesPerMentor = calcMinMaxMenteesPerMentor();
    print $minMenteesPerMentor;
}