You are here

FrxWebDoc.inc in Forena Reports 7.4

Same filename and directory in other branches
  1. 7.3 docformats/FrxWebDoc.inc

FrxWebDoc.inc Standard web document manager @author metzlerd

File

docformats/FrxWebDoc.inc
View source
<?php

/**
 * @file FrxWebDoc.inc
 * Standard web document manager
 * @author metzlerd
 *
 */
class FrxWebDoc extends FrxDocument {
  private $title;
  static $js_added = [];
  public function render($r, $format, $content = array()) {

    // Set title based on report.
    if ($r->title) {
      $this->title = $r->title;

      //drupal_set_title(filter_xss($r->title));
    }

    // Add Style attribute from header
    // Add css files
    foreach (Frx::Skin()->stylesheets as $type => $sheets) {
      foreach ($sheets as $sheet) {
        switch ($type) {
          case 'all':
          case 'print':
          case 'screen':
            $options = $type == 'all' ? array() : array(
              'media' => $type,
            );
            if (strpos($sheet, 'http:') === 0 || strpos($sheet, 'https:') === 0) {
              $options['type'] = 'external';
            }
            drupal_add_css($sheet, $options);
            break;
        }
      }
    }

    // Add in defined libraries.
    $skin_data = Frx::Skin()->info;
    if (isset($skin_data['libraries'])) {
      foreach ($skin_data['libraries'] as $dependency) {
        list($module, $library) = explode('/', $dependency);
        drupal_add_library($module, $library);
      }
    }

    // Check if ctools has been added.
    if (isset($skin_data['ctools']['js'])) {
      if (is_callable('ctools_add_js')) {
        foreach ($skin_data['ctools']['js'] as $js_file) {
          if ($js_file == 'modal') {
            ctools_include('modal');
            ctools_modal_add_js();
          }
          else {
            ctools_add_js($js_file);
          }
        }
      }
    }

    // Add inline styles
    if (isset($r->rpt_xml->head->style)) {
      $sheet = (string) $r->rpt_xml->head->style;
      drupal_add_css($sheet, array(
        'type' => 'inline',
      ));
    }

    // Add javascript files
    $scripts = array_unique(Frx::Skin()->scripts);
    foreach ($scripts as $script) {
      if (empty(FrxWebDoc::$js_added[$script])) {
        if (strpos($script, 'http:') === 0 || strpos($script, 'https:') === 0) {
          drupal_add_js($script, 'external');
        }
        else {
          drupal_add_js($script);
        }
        FrxWebDoc::$js_added[$script] = $script;
      }
    }

    //$output = theme('forena_web_report', $variables);
    return $content;
  }
  public function output(&$output) {
    $desc = Frx::Data()
      ->getContext('report');
    if ($this->title && $desc['print'] !== 'block') {
      drupal_set_title(filter_xss($this->title), PASS_THROUGH);
    }
    return FALSE;
  }

}

Classes

Namesort descending Description
FrxWebDoc @file FrxWebDoc.inc Standard web document manager @author metzlerd