Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
Matrix_Ogg.inc
1 <?php
17 require_once SQ_TOOL_OGG_METADATA_EXTRACTION_PATH;
18 
19 
20 
38 class Matrix_Ogg extends Ogg
39 {
40 
45  function __construct($filename, $caching)
46  {
47  parent::__construct($filename, $caching);
48 
49  }//end construct
50 
51 
61  function realpath($path)
62  {
63  if ((strpos($path, $_SERVER['DOCUMENT_ROOT']) !== FALSE) || (strpos($path, "://") !== FALSE)) {
64  // path already absolute or remote
65  return $path ;
66  } else if ($path[0] != '/') {
67  return str_replace("//","/",$_SERVER['DOCUMENT_ROOT'].$path);
68  } else {
69  // relative path
70  return $path ;
71  }
72 
73  }//end realpath()
74 
75 
76 }//end class
77 
78 ?>