Code Duplication    Length = 21-21 lines in 5 locations

examples/01essential/pages/Home.php 1 location

@@ 2-22 (lines=21) @@
1
<?php
2
	class Home extends Template {
3
		public function __construct() {
4
			parent::__construct();
5
			$this->tags["title"]		= "JATE - Home";
6
			$this->tags["content"] = $this->makePage();
7
		}
8
		public function makePage() {
9
			jBlock();
10
			?>
11
			<div class="row" style="margin-top:70px;">
12
				<div class="col-lg-12">
13
					<div class="well well-sm">
14
						Hello World!
15
					</div>
16
				</div>
17
			</div>
18
			<?php
19
			$temp = jBlockClose();
20
			return $temp;
21
		}
22
	}
23
?>
24

examples/01essential/pages/Page01.php 1 location

@@ 2-22 (lines=21) @@
1
<?php
2
	class Page01 extends Template {
3
		public function __construct() {
4
			parent::__construct();
5
			$this->tags["title"]		= "JATE - Page01";
6
			$this->tags["content"] = $this->makePage();
7
		}
8
		public function makePage() {
9
			jBlock();
10
			?>
11
			<div class="row" style="margin-top:70px;">
12
				<div class="col-lg-12">
13
					<div class="well well-sm">
14
						Page 1!
15
					</div>
16
				</div>
17
			</div>
18
			<?php
19
			$temp = jBlockClose();
20
			return $temp;
21
		}
22
	}
23
?>
24

examples/01essential/pages/Page404.php 1 location

@@ 2-22 (lines=21) @@
1
<?php
2
	class Page404 extends Template {
3
		public function __construct() {
4
			parent::__construct();
5
			$this->tags["title"]		= "JATE - 404";
6
			$this->tags["content"] = $this->makePage();
7
		}
8
		public function makePage() {
9
			jBlock();
10
			?>
11
			<div class="row" style="margin-top:70px;">
12
				<div class="col-lg-12">
13
					<div class="well well-sm">
14
						404 Page not found!
15
					</div>
16
				</div>
17
			</div>
18
			<?php
19
			$temp = jBlockClose();
20
			return $temp;
21
		}
22
	}
23
?>
24

examples/05database/pages/Page01.php 1 location

@@ 2-22 (lines=21) @@
1
<?php
2
	class Page01 extends Template {
3
		public function __construct() {
4
			parent::__construct();
5
			$this->tags["title"]		= "JATE - Page01";
6
			$this->tags["content"] = $this->makePage();
7
		}
8
		public function makePage() {
9
			jBlock();
10
			?>
11
			<div class="row" style="margin-top:70px;">
12
				<div class="col-lg-12">
13
					<div class="well well-sm">
14
						Page 1!
15
					</div>
16
				</div>
17
			</div>
18
			<?php
19
			$temp = jBlockClose();
20
			return $temp;
21
		}
22
	}
23
?>
24

examples/05database/pages/Page404.php 1 location

@@ 2-22 (lines=21) @@
1
<?php
2
	class Page404 extends Template {
3
		public function __construct() {
4
			parent::__construct();
5
			$this->tags["title"]		= "JATE - 404";
6
			$this->tags["content"] = $this->makePage();
7
		}
8
		public function makePage() {
9
			jBlock();
10
			?>
11
			<div class="row" style="margin-top:70px;">
12
				<div class="col-lg-12">
13
					<div class="well well-sm">
14
						404 Page not found!
15
					</div>
16
				</div>
17
			</div>
18
			<?php
19
			$temp = jBlockClose();
20
			return $temp;
21
		}
22
	}
23
?>
24