26bc0ee6a94d46348bb3acbcd86d05e0b828e833
[mtweb] / mw / app / data / modules / share / mw_data_versions.php
1 <?php
2
3   class mw_data_versions extends mw_data{
4
5     function version($application_name){
6       if(
7         $version = $this->data_read(
8           array(
9             "table_name" => "versions",
10             "index_name" => "application",
11             "index_value" => $application_name
12           )
13         )
14       ) return $version["version"];
15       return false;
16     }
17
18   }