Пример #1
0
 /**
  * Init download links
  */
 protected function initExportLinks()
 {
     $this->ToolbarLinks[] = '<li class="with-submenu"><span class="link"><i class="fa fa-fw fa-download"></i> ' . __('Export') . '</span><ul class="submenu">';
     foreach (Export\File\Types::getEnum() as $typeid) {
         $Exporter = Export\File\Types::get($typeid, $this->Context);
         if ($Exporter->isPossible()) {
             $this->ToolbarLinks[] = '<li><a href="' . $Exporter->url() . '"><i class="fa fa-fw ' . $Exporter->iconClass() . '"></i> ' . sprintf(__('as %s'), strtoupper($Exporter->extension())) . '</a></li>';
         }
     }
     $this->ToolbarLinks[] = '</ul></li>';
 }
Пример #2
0
<?php

/**
 * File for displaying statistic plugins.
 * Call:   call.Exporter.export.php?id=...[&typeid=...[&social=true]]
 */
require '../inc/class.Frontend.php';
$Frontend = new Frontend(true);
use Runalyze\View\Activity\Context;
use Runalyze\Export\Share;
use Runalyze\Export\File;
if (isset($_GET['social']) && Share\Types::isValidValue((int) $_GET['typeid'])) {
    $Context = new Context((int) $_GET['id'], SessionAccountHandler::getId());
    $Exporter = Share\Types::get((int) $_GET['typeid'], $Context);
    if ($Exporter instanceof Share\AbstractSnippetSharer) {
        $Exporter->display();
    }
} elseif (isset($_GET['file']) && File\Types::isValidValue((int) $_GET['typeid'])) {
    $Context = new Context((int) $_GET['id'], SessionAccountHandler::getId());
    $Exporter = File\Types::get((int) $_GET['typeid'], $Context);
    if ($Exporter instanceof File\AbstractFileExporter) {
        $Exporter->downloadFile();
        exit;
    }
}