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 +?>