PluginProbe
M Chart / 1.11
M Chart v1.11
2.3.2 2.3.1 2.3 2.2.2 2.2.1 2.2 trunk 1.0 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.10 1.10.1 1.11 1.11.1 1.11.2 1.12 1.2 1.2.1 1.3 1.3.1 1.3.2 All 53 releases
m-chart / components / templates / iframe.php

iframe.php in M Chart 1.11, at components/templates/iframe.php

20 lines 783 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // Make sure we isntantiate the library so any library specific filters/setup get run
3 $library = $this->get_post_meta( $post->ID, 'library' );
4 $this->library( $library );
5 ?>
6 <!doctype html>
7 <html>
8 <head>
9 <meta charset="utf-8">
10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
11 <title><?php echo get_the_title( $post->ID ); ?></title>
12 <meta name="description" content="">
13 <meta name="viewport" content="width=device-width, initial-scale=1">
14 <?php wp_print_scripts( apply_filters( 'm_chart_iframe_scripts', $scripts, $post->ID ) ); ?>
15 </head>
16 <!-- overflow: hidden; prevents the iframe from scrolling -->
17 <body style="overflow: hidden;">
18 <?php echo $this->get_chart( $post->ID, $_GET ); ?>
19 </body>
20 </html>