Пример #1
0
 static function is_valid_embed_path($embed_path)
 {
     $mod_path = VARPATH . "modules/g2_import/" . md5($embed_path);
     if (file_exists($mod_path)) {
         dir::unlink($mod_path);
     }
     return file_exists($embed_path) && g2_import::init_embed($embed_path);
 }
Пример #2
0
 static function is_valid_embed_path($embed_path)
 {
     return file_exists($embed_path) && g2_import::init_embed($embed_path);
 }