/[dolibarr]/dolibarr/htdocs/index.php
ViewVC logotype

Diff of /dolibarr/htdocs/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.35 by rodolphe, Tue Aug 23 12:50:36 2005 UTC revision 1.36 by rodolphe, Tue Aug 23 13:05:59 2005 UTC
# Line 211  if ($conf->service->enabled && $user->ri Line 211  if ($conf->service->enabled && $user->ri
211      }      }
212  }  }
213    
214    // Nbre de lignes telephoniques suivies
215    if ($conf->telephonie->enabled && $user->rights->telephonie->ligne->lire_restreint)
216    {
217      include_once(DOL_DOCUMENT_ROOT."/telephonie/lignetel.class.php");
218      $board=new LigneTel($db);
219      $board->load_state_board($user);
220      
221      foreach($board->nb as $key=>$val)
222        {
223          $var=!$var;
224          print '<tr '.$bc[$var].'><td width="16">&nbsp;</td>';
225          print '<td>Lignes téléphoniques suivies</td>';
226          print '<td align="right"><a href="'.DOL_URL_ROOT.'/telephonie/ligne/">';
227          print $val;
228          print '</a></td>';
229          print '</tr>';
230        }
231    }
232    
233  print '</table>';  print '</table>';
234    
235    

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26