コード例 #1
0
ファイル: Settings.php プロジェクト: arjunkumar786/faces
 /**
  * Tell PHPExcel where to find the external library to use for rendering charts
  *
  * @param string $libraryBaseDir	Directory path to the library's base folder
  * @return	boolean	Success or failure
  */
 public static function setChartRendererPath($libraryBaseDir)
 {
     if (file_exists($libraryBaseDir) === false || is_readable($libraryBaseDir) === false) {
         return FALSE;
     }
     self::$_chartRendererPath = $libraryBaseDir;
     return TRUE;
 }
コード例 #2
0
ファイル: Settings.php プロジェクト: echoOly/php_base
 /**
  * Tell PHPExcel where to find the external library to use for rendering charts
  *
  * @param	 string	$libraryBaseDir		Directory path to the library's base folder
  * @return	 boolean					Success or failure
  */
 public static function setChartRendererPath($libraryBaseDir)
 {
     self::$_chartRendererPath = $libraryBaseDir;
     return TRUE;
 }