From 68b9f7a9f46591748ae590268853fe7f0242dc26 Mon Sep 17 00:00:00 2001 From: nojhan Date: Sun, 15 Jun 2008 20:20:43 +0000 Subject: [PATCH] ajout de l'item source_size --- strip_manager.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/strip_manager.php b/strip_manager.php index 26ba6da..6e05fd0 100644 --- a/strip_manager.php +++ b/strip_manager.php @@ -111,6 +111,10 @@ class strip_manager */ var $source = ''; /** + * Size of the source file + */ + var $source_size = 0; + /** * Description */ var $description; @@ -333,6 +337,7 @@ class strip_manager } $this->source = $svg; + $this->source_size = filesize( $svg ); if( file_exists($svg) ) { $data = file_get_contents( $svg ); @@ -510,4 +515,4 @@ class strip_manager } } -?> \ No newline at end of file +?>