Ejemplo n.º 1
0
 public function sc($attr)
 {
     $options = get_option('fileaway_options');
     $levels = array($options['modalaccess'], 'edit_pages', 'edit_posts');
     foreach ($levels as $level) {
         if (!current_user_can($level)) {
             return;
         }
     }
     $fileaway = new fileaway();
     $atts = array('tutorials' => 1, 'type' => 'table', 'filenamelabel' => 'Topic', 'fadein' => 'opacity', 'customdata' => 'Description,Length', 'size' => 'no', 'mod' => 'no', 'flightbox' => 'multi', 'boxtheme' => 'yang', 'only' => 'fileaway-url-parser.csv', 'theme' => 'silver-bullet', 'heading' => 'File Away Tutorials', 'hcolor' => 'black', 'align' => 'none', 'textaign' => 'left', 'color' => 'blue', 'iconcolor' => 'black');
     if (isset($attr['showto'])) {
         $atts['showto'] = $attr['showto'];
     }
     if (isset($attr['hidefrom'])) {
         $atts['hidefrom'] = $attr['hidefrom'];
     }
     return $fileaway->sc($atts);
 }
Ejemplo n.º 2
0
 function sssc_fileaway($atts)
 {
     $fileaway = new fileaway();
     return $fileaway->sc($atts);
 }