You are here

DrupalPage.php in Forena Reports 7.5

DrupalPage.inc Standard web document manager @author metzlerd

File

src/DocumentFormats/DrupalPage.php
View source
<?php

/**
 * @file DrupalPage.inc
 * Standard web document manager
 * @author metzlerd
 *
 */
namespace Drupal\forena\DocumentFormats;

use Frx;
class DrupalPage extends DocumentTypeBase {
  private $title;
  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 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
    foreach (Frx::Skin()->scripts as $script) {
      if (strpos($script, 'http:') === 0 || strpos($script, 'https:') === 0) {
        drupal_add_js($script, 'external');
      }
      else {
        drupal_add_js($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
DrupalPage