Completed
Push — master ( d9eba8...4988a4 )
by Jacob
03:52
created
controller/waterfalls/PeriodListController.class.inc.php 1 patch
Braces   +27 added lines, -26 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 Loader::load('collector', 'waterfall/PeriodCollector');
4 4
 Loader::load('controller', 'waterfalls/DefaultLogListController');
5 5
 
6
-final class PeriodListController extends DefaultLogListController
7
-{
6
+final class PeriodListController extends DefaultLogListController
7
+{
8 8
 
9 9
 	private static $DEFAULT_TITLE = '%s Hiking Stories, Page %d of %d';
10 10
 	private static $DEFAULT_DESCRIPTION = 'Page %d of %d of epic %s hiking stories written by Jacob Emerick, all about his adventures hunting waterfalls in the Upper Peninsula of Michigan';
@@ -21,19 +21,20 @@  discard block
 block discarded – undo
21 21
 
22 22
 	private $period;
23 23
 
24
-	public function __construct()
25
-	{
24
+	public function __construct()
25
+	{
26 26
 		$alias = URLDecode::getPiece(2);
27 27
 		$this->period = PeriodCollector::getByAlias($alias);
28 28
 		
29
-		if(!$this->period)
30
-			$this->eject();
29
+		if(!$this->period) {
30
+					$this->eject();
31
+		}
31 32
 		
32 33
 		parent::__construct();
33 34
 	}
34 35
 
35
-	protected function get_initial_meta()
36
-	{
36
+	protected function get_initial_meta()
37
+	{
37 38
 		$meta_array = array();
38 39
 		
39 40
 		$meta_array['title'] = "Hiking Stories - {$this->period->name} | " . self::$WEBSITE_TITLE;
@@ -43,8 +44,8 @@  discard block
 block discarded – undo
43 44
 		return $meta_array;
44 45
 	}
45 46
 
46
-	protected function get_subsequent_meta()
47
-	{
47
+	protected function get_subsequent_meta()
48
+	{
48 49
 		$meta_array = array();
49 50
 		
50 51
 		$meta_array['title'] = sprintf(self::$DEFAULT_TITLE . ' | ' . self::$WEBSITE_TITLE, $this->period->name, $this->page, $this->page_count);
@@ -54,15 +55,15 @@  discard block
 block discarded – undo
54 55
 		return $meta_array;
55 56
 	}
56 57
 
57
-	private function get_keyword_array()
58
-	{
58
+	private function get_keyword_array()
59
+	{
59 60
 		$keyword_array = self::$KEYWORD_ARRAY;
60 61
 		array_unshift($keyword_array, strtolower($this->period->name));
61 62
 		return $keyword_array;
62 63
 	}
63 64
 
64
-	protected function get_initial_introduction()
65
-	{
65
+	protected function get_initial_introduction()
66
+	{
66 67
 		$introduction = array();
67 68
 		
68 69
 		$introduction['title'] = $this->period->title;
@@ -72,37 +73,37 @@  discard block
 block discarded – undo
72 73
 		return $introduction;
73 74
 	}
74 75
 
75
-	protected function get_subsequent_introduction()
76
-	{
76
+	protected function get_subsequent_introduction()
77
+	{
77 78
 		return array(
78 79
 			'title' => sprintf(self::$DEFAULT_HEADER, $this->page, $this->period->name));
79 80
 	}
80 81
 
81
-	protected function get_page_number_piece()
82
-	{
82
+	protected function get_page_number_piece()
83
+	{
83 84
 		return URLDecode::getPiece(3);
84 85
 	}
85 86
 
86
-	protected function get_item_result($total, $offset)
87
-	{
87
+	protected function get_item_result($total, $offset)
88
+	{
88 89
 		return PeriodCollector::getLogListForPeriod($this->period->id, $total, $offset);
89 90
 	}
90 91
 
91
-	protected function get_item_count_result()
92
-	{
92
+	protected function get_item_count_result()
93
+	{
93 94
 		return PeriodCollector::getLogCountForPeriod($this->period->id);
94 95
 	}
95 96
 
96
-	protected function get_list_description_pattern()
97
-	{
97
+	protected function get_list_description_pattern()
98
+	{
98 99
 		$period = $this->period->name;
99 100
 		$period = strtolower($period);
100 101
 		$navigation_description = str_replace('%PERIOD%', $period, self::$NAVIGATION_DESCRIPTION);
101 102
 		return $navigation_description;
102 103
 	}
103 104
 
104
-	protected function get_list_link_root()
105
-	{
105
+	protected function get_list_link_root()
106
+	{
106 107
 		return sprintf(self::$LINK_ROOT, $this->period->alias);
107 108
 	}
108 109
 
Please login to merge, or discard this patch.
controller/Error404Controller.class.inc.php 1 patch
Braces   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('controller', '/PageController');
4 4
 
5
-class Error404Controller extends PageController
6
-{
5
+class Error404Controller extends PageController
6
+{
7 7
 
8
-	protected function set_head_data()
9
-	{
8
+	protected function set_head_data()
9
+	{
10 10
 		$this->set_header_method('send404');
11 11
 		$this->add_css('normalize');
12 12
 		$this->add_css('404');
@@ -16,15 +16,15 @@  discard block
 block discarded – undo
16 16
 		$this->set_head('keywords', '');
17 17
 	}
18 18
 
19
-	protected function set_body_data()
20
-	{
19
+	protected function set_body_data()
20
+	{
21 21
 		$this->set_body('site_list', $this->get_sites());
22 22
 		
23 23
 		$this->set_body_view('/404');
24 24
 	}
25 25
 
26
-	private function get_sites()
27
-	{
26
+	private function get_sites()
27
+	{
28 28
     return [
29 29
       [
30 30
         'url' => 'https://home.jacobemerick.com/',
Please login to merge, or discard this patch.
utility/content/ElapsedTimeContent.class.inc.php 1 patch
Braces   +63 added lines, -62 removed lines patch added patch discarded remove patch
@@ -2,72 +2,73 @@
 block discarded – undo
2 2
 
3 3
 Loader::load('utility', 'Content');
4 4
 
5
-final class ElapsedTimeContent extends Content
6
-{
5
+final class ElapsedTimeContent extends Content
6
+{
7 7
 
8
-	protected function execute()
9
-	{
8
+	protected function execute()
9
+	{
10 10
 		$previous_time = strtotime($this->content);
11 11
 		$current_time = time();
12 12
 		
13
-		if($current_time <= $previous_time)
14
-			$this->content = 'few seconds ago';
15
-		else if(($current_time - $previous_time) < 30)
16
-			$this->content = 'few seconds ago';
17
-		else if(($current_time - $previous_time) < 1.5 * 60)
18
-			$this->content = 'a minute ago';
19
-		else if(($current_time - $previous_time) < 4 * 60)
20
-			$this->content = 'few minutes ago';
21
-		else if(($current_time - $previous_time) < 7 * 60)
22
-			$this->content = 'five minutes ago';
23
-		else if(($current_time - $previous_time) < 12 * 60)
24
-			$this->content = 'ten minutes ago';
25
-		else if(($current_time - $previous_time) < 17 * 60)
26
-			$this->content = 'fifteen minutes ago';
27
-		else if(($current_time - $previous_time) < 22 * 60)
28
-			$this->content = 'twenty minutes ago';
29
-		else if(($current_time - $previous_time) < 37 * 60)
30
-			$this->content = 'half hour ago';
31
-		else if(($current_time - $previous_time) < 52 * 60)
32
-			$this->content = 'forty-five minutes ago';
33
-		else if(($current_time - $previous_time) < 1.5 * 60 * 60)
34
-			$this->content = 'an hour ago';
35
-		else if(($current_time - $previous_time) < 2.5 * 60 * 60)
36
-			$this->content = 'two hours ago';
37
-		else if(($current_time - $previous_time) < 3.5 * 60 * 60)
38
-			$this->content = 'three hours ago';
39
-		else if(($current_time - $previous_time) < 4.5 * 60 * 60)
40
-			$this->content = 'few hours ago';
41
-		else if(($current_time - $previous_time) < 1 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) && date('a', $previous_time) == 'pm')
42
-			$this->content = 'this afternoon';
43
-		else if(($current_time - $previous_time) < 1 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) && date('a', $previous_time) == 'am')
44
-			$this->content = 'this morning';
45
-		else if(($current_time - $previous_time) < 2 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 1 && date('a', $previous_time) == 'pm' && date('G', $previous_time) >= 17)
46
-			$this->content = 'yesterday evening';
47
-		else if(($current_time - $previous_time) < 2 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 1 && date('a', $previous_time) == 'pm')
48
-			$this->content = 'yesterday afternoon';
49
-		else if(($current_time - $previous_time) < 2 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 1 && date('a', $previous_time) == 'am')
50
-			$this->content = 'yesterday morning';
51
-		else if(($current_time - $previous_time) < 3 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 2)
52
-			$this->content = 'two days ago';
53
-		else if(($current_time - $previous_time) < 4 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 3)
54
-			$this->content = 'three days ago';
55
-		else if(($current_time - $previous_time) < 1 * 7 * 24 * 60 * 60 && date('W', $current_time) == date('W', $previous_time))
56
-			$this->content = 'earlier this week';
57
-		else if(($current_time - $previous_time) < 2 * 7 * 24 * 60 * 60 && date('W', $current_time) == date('W', $previous_time) + 1 && date('w', $previous_time) >= 3)
58
-			$this->content = 'late last week';
59
-		else if(($current_time - $previous_time) < 2 * 7 * 24 * 60 * 60 && date('W', $current_time) == date('W', $previous_time) + 1)
60
-			$this->content = 'early last week';
61
-		else if(($current_time - $previous_time) < 3 * 7 * 24 * 60 * 60)
62
-			$this->content = 'few weeks ago';
63
-		else if(($current_time - $previous_time) < 1.25* 4 * 7 * 24 * 60 * 60 && date('n', $current_time) == date('n', $previous_time))
64
-			$this->content = 'earlier this month';
65
-		else if(($current_time - $previous_time) < 2 * 4 * 7 * 24 * 60 * 60 && date('n', $current_time) == date('n', $previous_time) + 1)
66
-			$this->content = 'last month';
67
-		else if(($current_time - $previous_time) < 4 * 4 * 7 * 24 * 60 * 60)
68
-			$this->content = 'several months ago';
69
-		else
70
-			$this->content = 'long ago';
13
+		if($current_time <= $previous_time) {
14
+					$this->content = 'few seconds ago';
15
+		} else if(($current_time - $previous_time) < 30) {
16
+					$this->content = 'few seconds ago';
17
+		} else if(($current_time - $previous_time) < 1.5 * 60) {
18
+					$this->content = 'a minute ago';
19
+		} else if(($current_time - $previous_time) < 4 * 60) {
20
+					$this->content = 'few minutes ago';
21
+		} else if(($current_time - $previous_time) < 7 * 60) {
22
+					$this->content = 'five minutes ago';
23
+		} else if(($current_time - $previous_time) < 12 * 60) {
24
+					$this->content = 'ten minutes ago';
25
+		} else if(($current_time - $previous_time) < 17 * 60) {
26
+					$this->content = 'fifteen minutes ago';
27
+		} else if(($current_time - $previous_time) < 22 * 60) {
28
+					$this->content = 'twenty minutes ago';
29
+		} else if(($current_time - $previous_time) < 37 * 60) {
30
+					$this->content = 'half hour ago';
31
+		} else if(($current_time - $previous_time) < 52 * 60) {
32
+					$this->content = 'forty-five minutes ago';
33
+		} else if(($current_time - $previous_time) < 1.5 * 60 * 60) {
34
+					$this->content = 'an hour ago';
35
+		} else if(($current_time - $previous_time) < 2.5 * 60 * 60) {
36
+					$this->content = 'two hours ago';
37
+		} else if(($current_time - $previous_time) < 3.5 * 60 * 60) {
38
+					$this->content = 'three hours ago';
39
+		} else if(($current_time - $previous_time) < 4.5 * 60 * 60) {
40
+					$this->content = 'few hours ago';
41
+		} else if(($current_time - $previous_time) < 1 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) && date('a', $previous_time) == 'pm') {
42
+					$this->content = 'this afternoon';
43
+		} else if(($current_time - $previous_time) < 1 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) && date('a', $previous_time) == 'am') {
44
+					$this->content = 'this morning';
45
+		} else if(($current_time - $previous_time) < 2 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 1 && date('a', $previous_time) == 'pm' && date('G', $previous_time) >= 17) {
46
+					$this->content = 'yesterday evening';
47
+		} else if(($current_time - $previous_time) < 2 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 1 && date('a', $previous_time) == 'pm') {
48
+					$this->content = 'yesterday afternoon';
49
+		} else if(($current_time - $previous_time) < 2 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 1 && date('a', $previous_time) == 'am') {
50
+					$this->content = 'yesterday morning';
51
+		} else if(($current_time - $previous_time) < 3 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 2) {
52
+					$this->content = 'two days ago';
53
+		} else if(($current_time - $previous_time) < 4 * 24 * 60 * 60 && date('j', $current_time) == date('j', $previous_time) + 3) {
54
+					$this->content = 'three days ago';
55
+		} else if(($current_time - $previous_time) < 1 * 7 * 24 * 60 * 60 && date('W', $current_time) == date('W', $previous_time)) {
56
+					$this->content = 'earlier this week';
57
+		} else if(($current_time - $previous_time) < 2 * 7 * 24 * 60 * 60 && date('W', $current_time) == date('W', $previous_time) + 1 && date('w', $previous_time) >= 3) {
58
+					$this->content = 'late last week';
59
+		} else if(($current_time - $previous_time) < 2 * 7 * 24 * 60 * 60 && date('W', $current_time) == date('W', $previous_time) + 1) {
60
+					$this->content = 'early last week';
61
+		} else if(($current_time - $previous_time) < 3 * 7 * 24 * 60 * 60) {
62
+					$this->content = 'few weeks ago';
63
+		} else if(($current_time - $previous_time) < 1.25* 4 * 7 * 24 * 60 * 60 && date('n', $current_time) == date('n', $previous_time)) {
64
+					$this->content = 'earlier this month';
65
+		} else if(($current_time - $previous_time) < 2 * 4 * 7 * 24 * 60 * 60 && date('n', $current_time) == date('n', $previous_time) + 1) {
66
+					$this->content = 'last month';
67
+		} else if(($current_time - $previous_time) < 4 * 4 * 7 * 24 * 60 * 60) {
68
+					$this->content = 'several months ago';
69
+		} else {
70
+					$this->content = 'long ago';
71
+		}
71 72
 	}
72 73
 
73 74
 }
74 75
\ No newline at end of file
Please login to merge, or discard this patch.
utility/content/SmartTrimContent.class.inc.php 1 patch
Braces   +42 added lines, -36 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('utility', 'Content');
4 4
 
5
-class SmartTrimContent extends Content
6
-{
5
+class SmartTrimContent extends Content
6
+{
7 7
 
8 8
 	private static $EXCLUDE_TAGS = array(
9 9
 		'a',
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
 
25 25
 	private $is_trimmed;
26 26
 
27
-	protected function execute()
28
-	{
27
+	protected function execute()
28
+	{
29 29
 		$args = func_get_args();
30 30
 		if(count($args) < 1)
31 31
 		{
@@ -33,37 +33,40 @@  discard block
 block discarded – undo
33 33
 			return;
34 34
 		}
35 35
 		
36
-		if(count($args) == 2)
37
-			$etc = $args[1];
38
-		else
39
-			$etc = self::$ETC;
36
+		if(count($args) == 2) {
37
+					$etc = $args[1];
38
+		} else {
39
+					$etc = self::$ETC;
40
+		}
40 41
 		
41 42
 		$length = $args[0];
42 43
 		
43
-		if($length < strlen($this->content))
44
-			$this->trim_string($length);
45
-        else
46
-            $etc = '';
44
+		if($length < strlen($this->content)) {
45
+					$this->trim_string($length);
46
+		} else {
47
+                    $etc = '';
48
+        }
47 49
 		$this->check_exclude_tags();
48 50
 		$this->close_tags($etc);
49 51
 	}
50 52
 
51
-	private function trim_string($length)
52
-	{
53
+	private function trim_string($length)
54
+	{
53 55
 		$content = $this->trim_html_string($this->content, $length);
54 56
 		
55 57
 		$last_right_bracket_position = strripos($content, self::$RIGHT_BRACKET);
56 58
 		$last_left_bracket_position = strripos($content, self::$LEFT_BRACKET);
57
-		if($last_left_bracket_position > $last_right_bracket_position)
58
-			$content = substr($content, 0, $last_left_bracket_position);
59
+		if($last_left_bracket_position > $last_right_bracket_position) {
60
+					$content = substr($content, 0, $last_left_bracket_position);
61
+		}
59 62
 		$content = trim($content);
60 63
 		
61 64
 		$this->content = $content;
62 65
 		$this->is_trimmed = true;
63 66
 	}
64 67
 
65
-	private function trim_html_string($content, $length)
66
-	{
68
+	private function trim_html_string($content, $length)
69
+	{
67 70
 		$content = preg_replace(self::$PHOTO_PLACEHOLDER_MATCH, '', $content);
68 71
 		preg_match_all(self::$HTML_TAG_PATTERN, $content, $matches, PREG_OFFSET_CAPTURE);
69 72
 		$content = strip_tags($content);
@@ -76,20 +79,22 @@  discard block
 block discarded – undo
76 79
 		foreach($matches[0] as $match)
77 80
 		{
78 81
 			$max_length += strlen($match[0]);
79
-			if($max_length <= $match[1])
80
-				break;
82
+			if($max_length <= $match[1]) {
83
+							break;
84
+			}
81 85
 			
82 86
 			$content = substr($content, 0, $match[1]) . $match[0] . substr($content, $match[1]);
83 87
 		}
84 88
 		
85
-		if(substr($content, -7) == '</p><p>')
86
-			$content = substr($content, 0, -7);
89
+		if(substr($content, -7) == '</p><p>') {
90
+					$content = substr($content, 0, -7);
91
+		}
87 92
 		
88 93
 		return $content;
89 94
 	}
90 95
 
91
-	private function check_exclude_tags()
92
-	{
96
+	private function check_exclude_tags()
97
+	{
93 98
 		$content = $this->content;
94 99
 		$tags_preg = $this->get_tags_preg(self::$EXCLUDE_TAGS);
95 100
 		preg_match_all($tags_preg, $content, $matches, PREG_OFFSET_CAPTURE);
@@ -105,8 +110,8 @@  discard block
 block discarded – undo
105 110
 		$this->content = $content;
106 111
 	}
107 112
 
108
-	private function close_tags($etc)
109
-	{
113
+	private function close_tags($etc)
114
+	{
110 115
 		$content = $this->content;
111 116
 		$tags_preg = $this->get_tags_preg(self::$INCLUDE_TAGS);
112 117
 		preg_match_all($tags_preg, $content, $matches);
@@ -118,9 +123,9 @@  discard block
 block discarded – undo
118 123
 			{
119 124
 				$key = array_search($tag, $open_tags);
120 125
 				unset($open_tags[$key]);
121
-			}
122
-			else
123
-				$open_tags[] = $tag;
126
+			} else {
127
+							$open_tags[] = $tag;
128
+			}
124 129
 		}
125 130
 		
126 131
 		$open_tags = array_reverse($open_tags);
@@ -128,19 +133,20 @@  discard block
 block discarded – undo
128 133
 		{
129 134
 			foreach($open_tags as $key => $open_tag)
130 135
 			{
131
-				if($key == count($open_tags) - 1)
132
-					$content .= $etc;
136
+				if($key == count($open_tags) - 1) {
137
+									$content .= $etc;
138
+				}
133 139
 				$content .= "</{$open_tag}>";
134 140
 			}
135
-		}
136
-		else
137
-			$content .= $etc;
141
+		} else {
142
+					$content .= $etc;
143
+		}
138 144
 		
139 145
 		$this->content = $content;
140 146
 	}
141 147
 
142
-	private function get_tags_preg($tag_array)
143
-	{
148
+	private function get_tags_preg($tag_array)
149
+	{
144 150
 		return '@</?(' . implode('|', $tag_array) . ')@';
145 151
 	}
146 152
 
Please login to merge, or discard this patch.
utility/content/MarkupCodeContent.class.inc.php 1 patch
Braces   +11 added lines, -10 removed lines patch added patch discarded remove patch
@@ -2,16 +2,17 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('utility', 'Content');
4 4
 
5
-final class MarkupCodeContent extends Content
6
-{
5
+final class MarkupCodeContent extends Content
6
+{
7 7
 
8 8
 	private static $MARKUP_DELIMITER = '@<pre( rel="(.*?)")?>(.*?)</pre>@s';
9 9
 
10
-	protected function execute($title = '')
11
-	{
10
+	protected function execute($title = '')
11
+	{
12 12
 		preg_match_all(self::$MARKUP_DELIMITER, $this->content, $matches);
13
-		if(count($matches[1]) == 0)
14
-			return;
13
+		if(count($matches[1]) == 0) {
14
+					return;
15
+		}
15 16
 		
16 17
 		foreach($matches[3] as $key => $match)
17 18
 		{
@@ -25,8 +26,8 @@  discard block
 block discarded – undo
25 26
 		return;
26 27
 	}
27 28
 
28
-	private function wrap_in_list($content)
29
-	{
29
+	private function wrap_in_list($content)
30
+	{
30 31
 		$content_array = explode("\n", $content);
31 32
 		
32 33
 		foreach($content_array as $key => $row)
@@ -44,8 +45,8 @@  discard block
 block discarded – undo
44 45
 		return $content;
45 46
 	}
46 47
 
47
-	private function highlight_code($content, $type)
48
-	{
48
+	private function highlight_code($content, $type)
49
+	{
49 50
 		switch($type)
50 51
 		{
51 52
 			default :
Please login to merge, or discard this patch.
utility/content/FixPhotoContent.class.inc.php 1 patch
Braces   +14 added lines, -12 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('utility', 'Content');
4 4
 
5
-final class FixPhotoContent extends Content
6
-{
5
+final class FixPhotoContent extends Content
6
+{
7 7
 
8 8
 	private static $PHOTO_PLACEHOLDER_MATCH = '@{{photo="(.*)"}}@';
9 9
 	private static $ERROR_CONTENT = '<div class="photo-holder"><p class="photo-caption">Image (%s) could not be found!</p></div>';
10 10
 	private static $PHOTO_CONTENT = '<div class="photo-holder"><img src="%sphoto/%s/%s-size-%s.jpg" height="%d" width="%d" alt="%s" /><p class="photo-caption">%s</p></div>';
11 11
 
12
-	protected function execute($is_absolute = false, $size = 'medium')
13
-	{
12
+	protected function execute($is_absolute = false, $size = 'medium')
13
+	{
14 14
 		preg_match_all(self::$PHOTO_PLACEHOLDER_MATCH, $this->content, $matches);
15 15
 		foreach($matches[1] as $key => $match)
16 16
 		{
@@ -20,14 +20,14 @@  discard block
 block discarded – undo
20 20
 		return;
21 21
 	}
22 22
 
23
-	private function get_file_path($category, $photo, $size, $extension)
24
-	{
23
+	private function get_file_path($category, $photo, $size, $extension)
24
+	{
25 25
 		$path = "{$category}/{$photo}-size-{$size}.{$extension}";
26 26
 		return Loader::getImagePath('photo', $path);
27 27
 	}
28 28
 
29
-	private function get_photo_content($string, $size, $is_absolute)
30
-	{
29
+	private function get_photo_content($string, $size, $is_absolute)
30
+	{
31 31
 		list($category, $file_name) = explode('/', $string);
32 32
 		list($photo, $extension) = explode('.', $file_name);
33 33
 		
@@ -37,16 +37,18 @@  discard block
 block discarded – undo
37 37
 		
38 38
 		Loader::load('collector', 'image/PhotoCollector');
39 39
 		$photo_result = PhotoCollector::fetchRow($category, $photo);
40
-		if($photo_result == false)
41
-			return '';
40
+		if($photo_result == false) {
41
+					return '';
42
+		}
42 43
 		
43 44
 		$height = $file_size[1];
44 45
 		$width = $file_size[0];
45 46
 		$description = $photo_result->description;
46 47
         
47 48
 		$domain = '/';
48
-		if($is_absolute)
49
-			$domain = Loader::getRootUrl('blog');
49
+		if($is_absolute) {
50
+					$domain = Loader::getRootUrl('blog');
51
+		}
50 52
 		
51 53
 		return sprintf(self::$PHOTO_CONTENT, $domain, $category, $photo, $size, $height, $width, $description, $description);
52 54
 	}
Please login to merge, or discard this patch.
utility/content/URLSafeContent.class.inc.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 Loader::load('utility', 'Content');
4 4
 
5
-class URLSafeContent extends Content
6
-{
5
+class URLSafeContent extends Content
6
+{
7 7
 
8
-	protected function execute()
9
-	{
8
+	protected function execute()
9
+	{
10 10
 		$this->content = strtolower(str_replace(' ', '-', $this->content));
11 11
 	}
12 12
 
Please login to merge, or discard this patch.
utility/content/CleanCommentContent.class.inc.php 1 patch
Braces   +24 added lines, -22 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('utility', 'Content');
4 4
 
5
-final class CleanCommentContent extends Content
6
-{
5
+final class CleanCommentContent extends Content
6
+{
7 7
 
8 8
 	private static $LINK_PATTERN = '@<a.*href=["\']([^"\']*)["\'].*>(.*)</a>@i';
9 9
 	private static $BOLD_PATTERN = '@<b.*>(.*)</b>@i';
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
 
23 23
 	private $replacement_array = array();
24 24
 
25
-	protected function execute()
26
-	{
25
+	protected function execute()
26
+	{
27 27
 		$this->process_element(self::$CODE_PATTERN, self::$CODE_REPLACE);
28 28
 		$this->process_element(self::$LINK_PATTERN, self::$LINK_REPLACE);
29 29
 		$this->process_element(self::$ITALIC_PATTERN, self::$ITALIC_REPLACE);
@@ -36,12 +36,13 @@  discard block
 block discarded – undo
36 36
 		$this->replace_element_patterns();
37 37
 	}
38 38
 
39
-	private function process_element($pattern, $replace)
40
-	{
39
+	private function process_element($pattern, $replace)
40
+	{
41 41
 		$match_count = preg_match_all($pattern, $this->content, $matches, PREG_SET_ORDER);
42 42
 		
43
-		if($match_count < 1)
44
-			return;
43
+		if($match_count < 1) {
44
+					return;
45
+		}
45 46
 		
46 47
 		foreach($matches as $match)
47 48
 		{
@@ -54,13 +55,13 @@  discard block
 block discarded – undo
54 55
 		}
55 56
 	}
56 57
 
57
-	private function create_placeholder($text)
58
-	{
58
+	private function create_placeholder($text)
59
+	{
59 60
 		return md5($text . rand());
60 61
 	}
61 62
 
62
-	private function create_full_match_pattern($text)
63
-	{
63
+	private function create_full_match_pattern($text)
64
+	{
64 65
 		$pattern = '';
65 66
 		$pattern .= '@';
66 67
 		$pattern .= preg_quote($text, '@');
@@ -70,17 +71,18 @@  discard block
 block discarded – undo
70 71
 		return $pattern;
71 72
 	}
72 73
 
73
-	private function strip_extra_tags()
74
-	{
74
+	private function strip_extra_tags()
75
+	{
75 76
 		$this->content = strip_tags($this->content);
76 77
 	}
77 78
 
78
-	private function link_unlinked_urls($pattern, $replace)
79
-	{
79
+	private function link_unlinked_urls($pattern, $replace)
80
+	{
80 81
 		$match_count = preg_match_all($pattern, $this->content, $matches, PREG_SET_ORDER);
81 82
 		
82
-		if($match_count < 1)
83
-			return;
83
+		if($match_count < 1) {
84
+					return;
85
+		}
84 86
 		
85 87
 		foreach($matches as $match)
86 88
 		{
@@ -92,13 +94,13 @@  discard block
 block discarded – undo
92 94
 		}
93 95
 	}
94 96
 
95
-	private function add_line_breaks()
96
-	{
97
+	private function add_line_breaks()
98
+	{
97 99
 		$this->content = preg_replace(self::$LINE_BREAK_PATTERN, self::$LINE_BREAK_REPLACE, $this->content);
98 100
 	}
99 101
 
100
-	private function replace_element_patterns()
101
-	{
102
+	private function replace_element_patterns()
103
+	{
102 104
 		foreach($this->replacement_array as $key => $replace)
103 105
 		{
104 106
 			$this->content = str_replace($key, $replace, $this->content);
Please login to merge, or discard this patch.
utility/content/FetchFirstPhotoContent.class.inc.php 1 patch
Braces   +19 added lines, -16 removed lines patch added patch discarded remove patch
@@ -2,30 +2,31 @@  discard block
 block discarded – undo
2 2
 
3 3
 Loader::load('utility', 'Content');
4 4
 
5
-final class FetchFirstPhotoContent extends Content
6
-{
5
+final class FetchFirstPhotoContent extends Content
6
+{
7 7
 
8 8
 	private static $PHOTO_PLACEHOLDER_MATCH = '@{{photo="(.*)"}}@';
9 9
 	private static $IMAGE_NODE = '<img src="%sphoto/%s/%s-size-%s.%s" height="%d" width="%d" alt="%s" />';
10 10
 	private static $DEFAULT_RETURN = '';
11 11
 
12
-	protected function execute($is_absolute = false, $size = 'thumb')
13
-	{
14
-		if(preg_match(self::$PHOTO_PLACEHOLDER_MATCH, $this->content, $match) === 1)
15
-			$this->content = $this->get_thumb($match[1], $is_absolute, $size);
16
-		else
17
-			$this->content = self::$DEFAULT_RETURN;
12
+	protected function execute($is_absolute = false, $size = 'thumb')
13
+	{
14
+		if(preg_match(self::$PHOTO_PLACEHOLDER_MATCH, $this->content, $match) === 1) {
15
+					$this->content = $this->get_thumb($match[1], $is_absolute, $size);
16
+		} else {
17
+					$this->content = self::$DEFAULT_RETURN;
18
+		}
18 19
 		return;
19 20
 	}
20 21
 
21
-	private function get_file_path($category, $photo, $size, $extension)
22
-	{
22
+	private function get_file_path($category, $photo, $size, $extension)
23
+	{
23 24
 		$path = "{$category}/{$photo}-size-{$size}.{$extension}";
24 25
 		return Loader::getImagePath('photo', $path);
25 26
 	}
26 27
 
27
-	private function get_thumb($string, $is_absolute, $size)
28
-	{
28
+	private function get_thumb($string, $is_absolute, $size)
29
+	{
29 30
 		list($category, $file_name) = explode('/', $string);
30 31
 		list($photo, $extension) = explode('.', $file_name);
31 32
 		
@@ -34,16 +35,18 @@  discard block
 block discarded – undo
34 35
 		
35 36
 		Loader::load('collector', 'image/PhotoCollector');
36 37
 		$photo_result = PhotoCollector::fetchRow($category, $photo);
37
-		if($photo_result == false)
38
-			return '';
38
+		if($photo_result == false) {
39
+					return '';
40
+		}
39 41
 		
40 42
 		$height = $file_size[1];
41 43
 		$width = $file_size[0];
42 44
 		$description = $photo_result->description;
43 45
 		
44 46
 		$domain = '/';
45
-		if($is_absolute)
46
-			$domain = Loader::getRootURL(URLDecode::getSite());
47
+		if($is_absolute) {
48
+					$domain = Loader::getRootURL(URLDecode::getSite());
49
+		}
47 50
 
48 51
 		return sprintf(self::$IMAGE_NODE, $domain, $category, $photo, $size, $extension, $height, $width, $description);
49 52
 	}
Please login to merge, or discard this patch.