| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  | namespace Anax\Comments; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  | use \Anax\DI\DIInterface; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  | use \Anax\Comments\Comm; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  | /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  |  * Form to update an item. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  |  */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  | class ShowOneService | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  | { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  |     * @var array $commentitem, the chosen comment. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |     */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  |     protected $comment; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  |     protected $comments; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  |     protected $sess; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  |      * Constructor injects with DI container and the id to update. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  |      * @param Anax\DI\DIInterface $di a service container | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  |      * @param integer             $id to show | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  |     public function __construct(DIInterface $di, $id) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 |  |  |         $this->di = $di; | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  |         $this->comment = $this->getItemDetails($id); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 |  |  |         $where = "parentid = ?"; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  |         $params = [$id]; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  |         $this->comments = $this->getParentDetails($where, $params); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 |  |  |         $session = $this->di->get("session"); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  |         $this->sess = $session->get("user"); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 40 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 41 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 42 |  |  |      * Get details on item to load form with. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 43 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 |  |  |      * @param integer $id get details on item with id. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 |  |  |      * @return Comm | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 |  |  |      */ | 
            
                                                                                                            
                            
            
                                                                    
                                                                                                        
            
            
                | 48 |  | View Code Duplication |     public function getItemDetails($id) | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  |         $comm = new Comm(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 |  |  |         $comm->setDb($this->di->get("db")); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 |  |  |         $comm->find("id", $id); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  |         return $comm; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 56 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 57 |  |  |         /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 58 |  |  |      * Get details on item to load form with. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 59 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 |  |  |      * @param string $where | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 |  |  |      * @param array $params get details on item with id parentid. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 63 |  |  |      * @return Comm | 
            
                                                                                                            
                            
            
                                    
            
            
                | 64 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 65 |  |  |     public function getParentDetails($where, $params) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 66 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 67 |  |  |         $comm = new Comm(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 68 |  |  |         $comm->setDb($this->di->get("db")); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 69 |  |  |         return $comm->findAllWhere($where, $params); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 70 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 71 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 72 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 73 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 74 |  |  |      * Sets the callable to use for creating routes. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 75 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 76 |  |  |      * @param callable $urlCreate to create framework urls. | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 77 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 78 |  |  |      * @return void | 
            
                                                                                                            
                            
            
                                    
            
            
                | 79 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 80 |  |  |     public function setUrlCreator($route) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 81 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 82 |  |  |         $url = $this->di->get("url"); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 83 |  |  |         return call_user_func([$url, "create"], $route); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 84 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 85 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 86 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 87 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 88 |  |  |      * Returns link for gravatar img | 
            
                                                                                                            
                            
            
                                    
            
            
                | 89 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 90 |  |  |      * @param object $item | 
            
                                                                                                            
                            
            
                                    
            
            
                | 91 |  |  |      * @return string htmlcode | 
            
                                                                                                            
                            
            
                                    
            
            
                | 92 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 93 |  |  |     public function getGravatar($item) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 94 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 95 |  |  |         $comm = new Comm(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 96 |  |  |         $gravatar = $comm->getGravatar($item); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 97 |  |  |         return '<img src="' . $gravatar . '" alt=""/>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 98 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 99 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 100 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 101 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 102 |  |  |      * Returns json_decoded title and text | 
            
                                                                                                            
                            
            
                                    
            
            
                | 103 |  |  |      * If lead text, headline is larger font | 
            
                                                                                                            
                            
            
                                    
            
            
                | 104 |  |  |      * @param object $item | 
            
                                                                                                            
                            
            
                                    
            
            
                | 105 |  |  |      * @return string htmlcode | 
            
                                                                                                            
                            
            
                                    
            
            
                | 106 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 107 |  |  |     public function getDecode($item, $lead = null) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 108 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 109 |  |  |         $comt = json_decode($item); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 110 |  |  |         if ($comt->frontmatter->title) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 111 |  |  |             $til = $comt->frontmatter->title; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 112 |  |  |         } else { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 113 |  |  |             $til = $item->title; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 114 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 115 |  |  |         $comt = $comt->text; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 116 |  |  |         if ($lead) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 117 |  |  |             return '<h3>' . $til . '</h3><p>' . $comt . '</p>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 118 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 119 |  |  |         return '<h4>' . $til . '</h4><p>' . $comt . '</p>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 120 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 121 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 122 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 123 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 124 |  |  |      * If param met, returns string with edit-links | 
            
                                                                                                            
                            
            
                                    
            
            
                | 125 |  |  |      * @param boolean $isadmin | 
            
                                                                                                            
                            
            
                                    
            
            
                | 126 |  |  |      * @param object $item | 
            
                                                                                                            
                            
            
                                    
            
            
                | 127 |  |  |      * @param string $update | 
            
                                                                                                            
                            
            
                                    
            
            
                | 128 |  |  |      * @param string $del | 
            
                                                                                                            
                            
            
                                    
            
            
                | 129 |  |  |      * @return string htmlcode | 
            
                                                                                                            
                            
            
                                    
            
            
                | 130 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 131 |  |  |     public function getCanEdit($item, $isadmin, $update, $del) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 132 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 133 |  |  |         $canedit = ""; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 134 |  |  |         if ($item->userid == $this->sess['id'] || $isadmin) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 135 |  |  |             $canedit = '<br /><a href="' . $update . '/' . $item->id . '">Redigera</a>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 136 |  |  |             $canedit .= ' | <a href="' . $del . '/' . $item->id . '">Ta bort inlägget</a></p>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 137 |  |  |         } else { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 138 |  |  |             $canedit .= '</p>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 139 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 140 |  |  |         return $canedit; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 141 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 142 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 143 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 144 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 145 |  |  |      * If session contains correct id, returns string with edit-links | 
            
                                                                                                            
                            
            
                                    
            
            
                | 146 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 147 |  |  |      * @return string htmlcode | 
            
                                                                                                            
                            
            
                                    
            
            
                | 148 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 149 |  |  |     public function getLoginurl() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 150 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 151 |  |  |         $loginurl = $this->setUrlCreator("user/login"); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 152 |  |  |         $create = $this->setUrlCreator("comm/create"); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 153 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 154 |  |  |         $htmlcomment = '<a href="' . $loginurl . '">Logga in om du vill kommentera</a></p>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 155 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 156 |  |  |         if ($this->sess && $this->sess['id']) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 157 |  |  |             $htmlcomment = '<a href="' . $create . '/' . $this->comment->id . '">Kommentera</a>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 158 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 159 |  |  |         return $htmlcomment; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 160 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 161 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 162 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 163 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 164 |  |  |      * If loggedin allowed to edit | 
            
                                                                                                            
                            
            
                                    
            
            
                | 165 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 166 |  |  |      * @param boolean $isadmin | 
            
                                                                                                            
                            
            
                                    
            
            
                | 167 |  |  |      * @param string $userid | 
            
                                                                                                            
                            
            
                                    
            
            
                | 168 |  |  |      * @param string $update, link | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 169 |  |  |      * @param string $htmlcomment, link | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 170 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 171 |  |  |      * @return string htmlcode | 
            
                                                                                                            
                            
            
                                    
            
            
                | 172 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 173 |  |  |     public function getEdit($isadmin, $userid, $update, $commid, $htmlcomment) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 174 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 175 |  |  |         if ($isadmin || $userid == $this->sess['id']) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 176 |  |  |             $edit = '<p><a href="' . $update . '/' . $commid . '">Redigera</a> | '; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 177 |  |  |             $edit .= $htmlcomment; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 178 |  |  |         } else { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 179 |  |  |             $edit = "<p>" . $htmlcomment . "</p>"; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 180 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 181 |  |  |         return $edit; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 182 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 183 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 184 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 185 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 186 |  |  |      * If session contains correct id, returns string with edit-links | 
            
                                                                                                            
                            
            
                                    
            
            
                | 187 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 188 |  |  |      * @return string htmlcode | 
            
                                                                                                            
                            
            
                                    
            
            
                | 189 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 190 |  |  |     public function getDelete($isadmin, $userid, $del, $commid) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 191 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 192 |  |  |         if ($isadmin || $userid == $this->sess['id']) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 193 |  |  |             $delete = ' | <a href="' .  $del . '/' . $commid . '">Ta bort inlägget</a></p>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 194 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 195 |  |  |         return $delete; | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 196 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 197 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 198 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 199 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 200 |  |  |      * Returns html for each item | 
            
                                                                                                            
                            
            
                                    
            
            
                | 201 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 202 |  |  |      * @param object $item | 
            
                                                                                                            
                            
            
                                    
            
            
                | 203 |  |  |      * @param string $can | 
            
                                                                                                            
                            
            
                                    
            
            
                | 204 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 205 |  |  |      * @return string htmlcod | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 206 |  |  |      */ | 
            
                                                                        
                            
            
                                    
            
            
                | 207 |  |  |     public function getValHtml($item, $can) | 
            
                                                                        
                            
            
                                    
            
            
                | 208 |  |  |     { | 
            
                                                                        
                            
            
                                    
            
            
                | 209 |  |  |         $gravatar = $this->getGravatar($item->email); | 
            
                                                                        
                            
            
                                    
            
            
                | 210 |  |  |         $updated = isset($item->updated) ? '| Uppdaterades: ' . $item->updated : ""; | 
            
                                                                        
                            
            
                                    
            
            
                | 211 |  |  |          | 
            
                                                                        
                            
            
                                    
            
            
                | 212 |  |  |         $text = $this->getDecode($item->comment); | 
            
                                                                        
                            
            
                                    
            
            
                | 213 |  |  |         $text .= '<p><span class="smaller">' . $item->email . '</span> ' . $gravatar . '<br />'; | 
            
                                                                        
                            
            
                                    
            
            
                | 214 |  |  |         $text .= 'Skrevs: ' . $item->created . ' ' . $updated; | 
            
                                                                        
                            
            
                                    
            
            
                | 215 |  |  |         $text .= $can; | 
            
                                                                        
                            
            
                                    
            
            
                | 216 |  |  |         $text .= '<hr />'; | 
            
                                                                        
                            
            
                                    
            
            
                | 217 |  |  |         return $text; | 
            
                                                                        
                            
            
                                    
            
            
                | 218 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 219 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 220 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 221 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 222 |  |  |      * Returns all text for the view | 
            
                                                                                                            
                            
            
                                    
            
            
                | 223 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 224 |  |  |      * @return string htmlcode | 
            
                                                                                                            
                            
            
                                    
            
            
                | 225 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 226 |  |  |     public function getHTML() | 
            
                                                                                                            
                            
            
                                    
            
            
                | 227 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 228 |  |  |         $isadmin = $this->sess['isadmin'] == 1 ? true : false; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 229 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 230 |  |  |         $update = $this->setUrlCreator("comm/update"); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 231 |  |  |         $del = $this->setUrlCreator("comm/delete"); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 232 |  |  |         $commpage = $this->setUrlCreator("comm"); | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 233 |  |  |          | 
            
                                                                                                            
                            
            
                                    
            
            
                | 234 |  |  |         $htmlcomment = $this->getLoginurl(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 235 |  |  |         $edit = $this->getEdit($isadmin, $this->comment->userid, $update, $this->comment->id, $htmlcomment); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 236 |  |  |         $delete = $this->getDelete($isadmin, $this->comment->userid, $del, $this->comment->id); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 237 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 238 |  |  |         $text = '<h3>Kommentarer</h3>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 239 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 240 |  |  |         if ($this->comments) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 241 |  |  |             foreach ($this->comments as $value) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 242 |  |  |                 $can = $this->getCanEdit($value, $isadmin, $update, $del); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 243 |  |  |                 $text .= $this->getValHtml($value, $can); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 244 |  |  |             } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 245 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 246 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 247 |  |  |         $html = '<div class="col-sm-12 col-xs-12"><div class="col-lg-4 col-sm-7 col-xs-7 abookimg">'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 248 |  |  |         $html .= $this->getDecode($this->comment->comment, true); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 249 |  |  |         $html .= '<br />' . $edit; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 250 |  |  |         $html .=  $delete; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 251 |  |  |         $html .=  '<p><a href="' . $commpage . '">Till Alla Inläggen</a></p>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 252 |  |  |         $html .=  '</div><div class="col-sm-5 col-xs-5">'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 253 |  |  |         $html .= $text; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 254 |  |  |         $html .= '</div></div>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 255 |  |  |         return $html; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 256 |  |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 257 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 258 |  |  |  | 
            
                        
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: