public function was_activated($module_name = 'networks')
 {
     PodcastList::with_network_scope(function () {
         PodcastList::build();
     });
     Template::with_network_scope(function () {
         Template::build();
     });
 }
 private static function podcast_ids()
 {
     return Model\PodcastList::with_network_scope(function () {
         return Model\Network::podcast_blog_ids();
     });
 }