svn: /web/doc-editor/trunk/php/ class.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Thu, 12 Nov 2009 18:02:54 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=290623
Log:
Remove getStatsOld's method from class.php. This method is present in TranslationStatistic.php as getOldFileCount's method
Changed paths:
U web/doc-editor/trunk/php/class.php
Modified: web/doc-editor/trunk/php/class.php
===================================================================
--- web/doc-editor/trunk/php/class.php 2009-11-12 18:02:22 UTC (rev 290622)
+++ web/doc-editor/trunk/php/class.php 2009-11-12 18:02:54 UTC (rev 290623)
@@ -275,39 +275,6 @@
}
/**
- * Get statistic about old files witch need to be uptadeted from LANG tree.
- *
- * @return An associated array (total=>nb files, total_size=>size of this files).
- */
- function getStatsOld()
- {
- $sql = sprintf('SELECT
- COUNT(`name`) AS total,
- SUM(`size`) AS total_size
- FROM
- `files`
- WHERE
- `lang`="%s"
- AND
- `en_revision` != `revision`
- AND
- `en_revision` - `revision` < 10
- AND
- `size_diff` < 3
- AND
- `mdate_diff` > -30
- AND
- `size` is not NULL
- ', $this->cvsLang);
-
- $result = $this->db->query($sql) or die('Error: '.$this->db->error.'|'.$s);
-
- $r = $result->fetch_array();
- $result = array($r['total'], $r['total_size']);
- return $result;
- }
-
- /**
* Get statistic about files witch need to be translated.
*
* @return An associated array (total=>nb files, size=>size of this files).