getByPK($linkId); if ($linkPoint->id) { $linkPoint->name = str_replace('"', 'ʺ', $linkPoint->name); $string = str_replace($link, '[]', $string); } } } } return $string; } public static function buildOG($point) { $og = array(); $og['title'] = $point->name . ' [wikipoints.ru]'; $og['description'] = mb_substr($point->description, 0, 200).'...'; $og['site_name'] = 'WikiPoints: Лучшие выходные - это выходные в путешествии!'; $og['type'] = 'article'; $og['url'] = 'http://wikipoints.ru/?point=' . $point->id; $og['image'] = $point->getImg(); return $og; } }