From MODx Wiki
| File: | manager/includes/document.parser.class.inc.php
|
| Line: | 1667
|
function getMETATags($id= 0) {
if ($id == 0) {
$id= $this->documentObject['id'];
}
$sql= "SELECT smt.* " .
"FROM " . $this->getFullTableName("site_metatags") . " smt " .
"INNER JOIN " . $this->getFullTableName("site_content_metatags") . " cmt ON cmt.metatag_id=smt.id " .
"WHERE cmt.content_id = '$id'";
$ds= $this->db->query($sql);
$limit= $this->db->getRecordCount($ds);
$metatags= array ();
if ($limit > 0) {
for ($i= 0; $i < $limit; $i++) {
$row= $this->db->getRow($ds);
$metatags[$row['name']]= array (
"tag" => $row['tag'],
"tagvalue" => $row['tagvalue'],
"http_equiv" => $row['http_equiv']
);
}
}
return $metatags;
}