iterate() as &$_curTpl) { $_ = &$_curTpl['specializations']; // shorthand if (!$_) $_ = [0, 0, 0, 0, 0]; else { $_ = explode(' ', $_); while (count($_) < 5) $_[] = 0; } } } public static function getName($id) { $n = DB::Aowow()->SelectRow(' SELECT name_loc0, name_loc2, name_loc3, name_loc6, name_loc8 FROM ?_skillline WHERE id = ?d', $id ); return Util::localizedString($n, 'name'); } public function getListviewData() { $data = []; foreach ($this->iterate() as $__) { $data[$this->id] = array( 'category' => $this->curTpl['typeCat'], 'categorybak' => $this->curTpl['categoryId'], 'id' => $this->id, 'name' => Util::jsEscape($this->getField('name', true)), 'profession' => $this->curTpl['professionMask'], 'recipeSubclass' => $this->curTpl['recipeSubClass'], 'specializations' => json_encode($this->curTpl['specializations'], JSON_NUMERIC_CHECK), 'icon' => Util::jsEscape($this->curTpl['iconString']) ); } return $data; } public function getJSGlobals($addMask = 0) { $data = []; foreach ($this->iterate() as $__) $data[self::$type][$this->id] = ['name' => Util::jsEscape($this->getField('name', true)), 'icon' => Util::jsEscape($this->curTpl['iconString'])]; return $data; } public function renderTooltip() { } } ?>