Merge fixes to ?preload= from /branches/conrad/ (cf. bug 5210, r62864, r62035)
[lhc/web/wiklou.git] / includes / ProfilerStub.php
index c41845a..575fa7e 100644 (file)
@@ -1,26 +1,49 @@
 <?php
+/**
+ * Stub profiling functions
+ * @file
+ * @ingroup Profiler
+ */
 
-# Stub profiling functions
+/** backward compatibility */
+$wgProfiling = false;
+$wgProfiler = null;
+
+/** is setproctitle function available ? */
+$haveProctitle = function_exists( 'setproctitle' );
 
-$haveProctitle=function_exists("setproctitle");
+/**
+ * Begin profiling of a function
+ * @param $fn string
+ */
 function wfProfileIn( $fn = '' ) {
        global $hackwhere, $wgDBname, $haveProctitle;
-       if ($haveProctitle) {
+       if( $haveProctitle ){
                $hackwhere[] = $fn;
-               setproctitle($fn . " [$wgDBname]");
+               setproctitle( $fn . " [$wgDBname]" );
        }
 }
+
+/**
+ * Stop profiling of a function
+ * @param $fn string
+ */
 function wfProfileOut( $fn = '' ) {
        global $hackwhere, $wgDBname, $haveProctitle;
-       if (!$haveProctitle)
+       if( !$haveProctitle )
                return;
-       if (count($hackwhere))
-               array_pop($hackwhere);
-       if (count($hackwhere))
-               setproctitle($hackwhere[count($hackwhere)-1] . " [$wgDBname]");
+       if( count( $hackwhere ) )
+               array_pop( $hackwhere );
+       if( count( $hackwhere ) )
+               setproctitle( $hackwhere[count( $hackwhere )-1] . " [$wgDBname]" );
 }
-function wfGetProfilingOutput( $s, $e ) {}
-function wfProfileClose() {}
-$wgProfiling = false;
 
+/**
+ * Does nothing, just for compatibility 
+ */
+function wfGetProfilingOutput( $s, $e ) {}
 
+/**
+ * Does nothing, just for compatibility 
+ */
+function wfProfileClose() {}