ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilSecurImageUtil.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 
13 {
14  private static $ver = "3_0_1";
15 
22  static function getDirectory()
23  {
24  return "./Services/Captcha/lib/securimage_".self::$ver;
25  }
26 
27 
31  static function getImageScript()
32  {
33  return self::getDirectory()."/il_securimage_show.php";
34  }
35 
39  function includeSecurImage()
40  {
41  include_once("./Services/Captcha/lib/securimage_".self::$ver."/securimage.php");
42  }
43 
44 }
45 ?>