Fix entry title. re #32

This commit is contained in:
Sébastien Lucas 2013-01-18 21:12:04 +01:00
parent 9d51e64731
commit 2025bfc15e

View file

@ -49,9 +49,16 @@ class CustomColumn extends Base {
return "?page=" . parent::PAGE_ALL_CUSTOMS . "&custom={$customId}"; return "?page=" . parent::PAGE_ALL_CUSTOMS . "&custom={$customId}";
} }
public static function getAllTitle ($customId) {
$result = parent::getDb ()->prepare('select name from custom_columns where id = ?');
$result->execute (array ($customId));
$post = $result->fetchObject ();
return $post->name;
}
public static function getCount($customId) { public static function getCount($customId) {
$nCustoms = parent::getDb ()->query('select count(*) from ' . self::getTableName ($customId))->fetchColumn(); $nCustoms = parent::getDb ()->query('select count(*) from ' . self::getTableName ($customId))->fetchColumn();
$entry = new Entry (localize("tags.title"), self::getAllCustomsId ($customId), $entry = new Entry (self::getAllTitle ($customId), self::getAllCustomsId ($customId),
str_format (localize("tags.alphabetical"), $nCustoms), "text", str_format (localize("tags.alphabetical"), $nCustoms), "text",
array ( new LinkNavigation (self::getUriAllCustoms ($customId)))); array ( new LinkNavigation (self::getUriAllCustoms ($customId))));
return $entry; return $entry;