function phpMyEdit_report($opts)
 {
     $opts['options'] = 'L';
     $execute = 1;
     isset($opts['execute']) && ($execute = $opts['execute']);
     $opts['execute'] = 0;
     parent::phpMyEdit($opts);
     $execute && $this->execute();
 }
 function phpMyEdit_slide($opts)
 {
     $execute = 1;
     isset($opts['execute']) && ($execute = $opts['execute']);
     $opts['execute'] = 0;
     parent::phpMyEdit($opts);
     $this->ext = $opts['ext'];
     $execute && $this->execute($opts);
 }
 function phpMyEdit_messages($opts)
 {
     $execute = 1;
     isset($opts['execute']) && ($execute = $opts['execute']);
     $opts['execute'] = 0;
     parent::phpMyEdit($opts);
     $this->tb2 = $opts['tb2'];
     $this->format_date = $opts['format_date'];
     /* Preserved article ID in CGI environment. */
     /* TODO: change to $this->article_id or something like this */
     global $ezin_admin_article;
     $ezin_admin_article = $this->get_data_cgi_var('article_id');
     $execute && $this->execute();
 }