forked from BellevueCollege/wordpress-cas-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities.php
72 lines (64 loc) · 1.33 KB
/
utilities.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* Created by JetBrains PhpStorm.
* User: [email protected]
* Date: 9/25/13
* Time: 4:40 PM
* To change this template use File | Settings | File Templates.
*/
// Disable to turn off debug logging
define("ENABLE_DEBUG_LOG", true);
define("DEBUG_LOG_PATH", "/var/tmp/wordpress-cas-client-debug.log");
/**
* @param $haystack
* @param $needle
*
* @return bool
*/
function str_starts_with($haystack, $needle)
{
$idx = stripos($haystack, $needle);
return (false !== $idx && 0 == $idx);
}
/**
* @param $message
*/
function debug_log($message)
{
if (ENABLE_DEBUG_LOG)
{
$date = new DateTime();
if (!error_log(site_name().": [".$date->format('Y-m-d H:i:s')."] ".$message . "\n", 3, DEBUG_LOG_PATH))
{
error_log("UNABLE TO WRITE TO DEBUG LOG (" . DEBUG_LOG_PATH . "): '" . $message . "'");
}
}
}
function site_name()
{
if (is_multisite())
{
$current_site = get_current_site();
return trim($current_site->path, "/");
}
else
{
// TODO: Identify the current blog by some string
return "";
}
}
function class_autoloader($class)
{
$classFile = dirname(__FILE__) . "/" . $class . ".php";
if (file_exists($classFile))
{
include_once($classFile);
}
else
{
$error = "Failed to load '".$classFile."'";
debug_log($error);
error_log($error);
}
}
?>