Files
gallery3/modules/gallery/views/admin_block_stats.html.php
Bharat Mediratta c3f93957d7 Move the gallery version out of a module variable and into a constant
in the gallery helper.  This will let us bump the version without
having to bump the gallery module number.
2009-07-14 10:56:10 -07:00

13 lines
317 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<li>
<?= t("Version: %version", array("version" => gallery::VERSION)) ?>
</li>
<li>
<?= t("Albums: %count", array("count" => $album_count)) ?>
</li>
<li>
<?= t("Photos: %count", array("count" => $photo_count)) ?>
</li>
</ul>