/**
  * Exceptionally override the execute method, so, based in the section_included setting, we are able
  * to skip the execution of one task completely
  */
 public function execute()
 {
     // Find activity_included_setting
     if (!$this->get_setting_value('included')) {
         $this->log('activity skipped by _included setting', backup::LOG_DEBUG, $this->name);
     } else {
         // Setting tells us it's ok to execute
         parent::execute();
     }
 }
 /**
  * Exceptionally override the execute method, so, based in the activity_included setting, we are able
  * to skip the execution of one task completely
  */
 public function execute()
 {
     // Find activity_included_setting
     if (!$this->get_setting_value('included')) {
         $this->log('activity skipped by _included setting', backup::LOG_DEBUG, $this->name);
         $this->plan->set_excluding_activities();
         // Inform plan we are excluding actvities
     } else {
         // Setting tells us it's ok to execute
         parent::execute();
     }
 }