[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/ -> vtigerservice.php (source)

   1  <?php
   2  /*+*******************************************************************************
   3   * The contents of this file are subject to the vtiger CRM Public License Version 1.0
   4   * ("License"); You may not use this file except in compliance with the License
   5   * The Original Code is:  vtiger CRM Open Source
   6   * The Initial Developer of the Original Code is vtiger.
   7   * Portions created by vtiger are Copyright (C) vtiger.
   8   * All Rights Reserved.
   9   ********************************************************************************/
  10  if(isset($_REQUEST['service']))
  11  {
  12      if($_REQUEST['service'] == "customerportal")
  13      {
  14          include ("soap/customerportal.php");
  15      }
  16      elseif($_REQUEST['service'] == "firefox")
  17      {
  18          include ("soap/firefoxtoolbar.php");
  19      }
  20      elseif($_REQUEST['service'] == "wordplugin")
  21      {
  22          include ("soap/wordplugin.php");
  23      }
  24      elseif($_REQUEST['service'] == "thunderbird")
  25      {
  26          include ("soap/thunderbirdplugin.php");
  27      }
  28      else
  29      {
  30          echo "No Service Configured for ". strip_tags($_REQUEST[service]);
  31      }
  32  }
  33  else
  34  {
  35      echo "<h1>vtigerCRM Soap Services</h1>";
  36      echo "<li>vtigerCRM Outlook Plugin EndPoint URL -- Click <a href='vtigerservice.php?service=outlook'>here</a></li>";
  37      echo "<li>vtigerCRM Word Plugin EndPoint URL -- Click <a href='vtigerservice.php?service=wordplugin'>here</a></li>";
  38      echo "<li>vtigerCRM ThunderBird Extenstion EndPoint URL -- Click <a href='vtigerservice.php?service=thunderbird'>here</a></li>";
  39      echo "<li>vtigerCRM Customer Portal EndPoint URL -- Click <a href='vtigerservice.php?service=customerportal'>here</a></li>";
  40      echo "<li>vtigerCRM WebForm EndPoint URL -- Click <a href='vtigerservice.php?service=webforms'>here</a></li>";
  41      echo "<li>vtigerCRM FireFox Extension EndPoint URL -- Click <a href='vtigerservice.php?service=firefox'>here</a></li>";
  42  }
  43  
  44  
  45  ?>


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1