Completed
Push — master ( 5f2f2b...044d29 )
by Denis
69:27 queued 42:33
created
src/Columns/AttributeColumn.php 1 patch
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -7,59 +7,59 @@
 block discarded – undo
7 7
 
8 8
 class AttributeColumn extends BaseColumn
9 9
 {
10
-    /**
11
-     * @var string - allowed: url, email, text, image
12
-     */
13
-    public $contentFormat = 'text';
10
+	/**
11
+	 * @var string - allowed: url, email, text, image
12
+	 */
13
+	public $contentFormat = 'text';
14 14
 
15
-    public function __construct($config)
16
-    {
17
-        if (is_string($config)) {
18
-            $config = [
19
-                'value' => $config,
20
-            ];
21
-        }
15
+	public function __construct($config)
16
+	{
17
+		if (is_string($config)) {
18
+			$config = [
19
+				'value' => $config,
20
+			];
21
+		}
22 22
 
23
-        parent::__construct($config);
23
+		parent::__construct($config);
24 24
 
25
-        if (empty($this->title)) {
26
-            $this->title = ucfirst(str_replace('_', ' ', $this->value));
27
-        }
28
-    }
25
+		if (empty($this->title)) {
26
+			$this->title = ucfirst(str_replace('_', ' ', $this->value));
27
+		}
28
+	}
29 29
 
30
-    /**
31
-     * @inheritdoc
32
-     * @throws ColumnRenderException
33
-     * @throws GridViewConfigException
34
-     */
35
-    public function renderValue($row)
36
-    {
37
-        $value = '';
30
+	/**
31
+	 * @inheritdoc
32
+	 * @throws ColumnRenderException
33
+	 * @throws GridViewConfigException
34
+	 */
35
+	public function renderValue($row)
36
+	{
37
+		$value = '';
38 38
 
39
-        if (is_array($row)) {
39
+		if (is_array($row)) {
40 40
 
41
-            if (isset($row[$this->value])) {
42
-                $value = $row[$this->value];
43
-            }
44
-        } elseif (isset($row->{$this->value})) {
45
-            $value = $row->{$this->value};
46
-        }
41
+			if (isset($row[$this->value])) {
42
+				$value = $row[$this->value];
43
+			}
44
+		} elseif (isset($row->{$this->value})) {
45
+			$value = $row->{$this->value};
46
+		}
47 47
 
48
-        switch ($this->contentFormat) {
49
-            case 'text':
50
-                return htmlentities($value);
48
+		switch ($this->contentFormat) {
49
+			case 'text':
50
+				return htmlentities($value);
51 51
 
52
-            case 'url':
53
-                return '<a href="' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>';
52
+			case 'url':
53
+				return '<a href="' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>';
54 54
 
55
-            case 'email':
56
-                return '<a href="mailto:' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>';
55
+			case 'email':
56
+				return '<a href="mailto:' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>';
57 57
                 
58
-            case 'image':
59
-                return '<img src="' . htmlspecialchars($value, ENT_QUOTES) . '">';
58
+			case 'image':
59
+				return '<img src="' . htmlspecialchars($value, ENT_QUOTES) . '">';
60 60
                 
61
-            default:
62
-                throw new GridViewConfigException('Invalid content format for attribute collumn: ' . $this->value);
63
-        }
64
-    }
61
+			default:
62
+				throw new GridViewConfigException('Invalid content format for attribute collumn: ' . $this->value);
63
+		}
64
+	}
65 65
 }
66 66
\ No newline at end of file
Please login to merge, or discard this patch.