PluginProbe
Civist – Petitions and Fundraising / trunk
Civist – Petitions and Fundraising vtrunk
8.0.3 8.0.2 8.0.0 trunk
civist / civist-container.php

civist-container.php in Civist – Petitions and Fundraising trunk, at civist-container.php

20 lines 370 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The container for the javascript app
4 *
5 * @package civist
6 */
7
8 if ( ! defined( 'WPINC' ) ) {
9 die;
10 }
11
12 /* translators: The loading text that shows in plugin pages while scripts are loading. */
13 $civist_loading = _x( 'Loading', 'wp.plugin.loading', 'civist' );
14
15 ?>
16 <div id="civist-wrapper">
17 <h1><?php echo( esc_html( $civist_loading ) ); ?></h1>
18 </div>
19 <?php
20