1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><div id="totalpoll-modules" class="wrap totalpoll-page" ng-app="modules"> <h1 class="totalpoll-page-title"><?php _e( 'Modules', 'totalpoll' ); ?></h1> <div class="totalpoll-page-tabs"> <div class="totalpoll-page-tabs-item active" tab-switch="modules>install"> <?php _e( 'Install', 'totalpoll' ); ?> </div> <div class="totalpoll-page-tabs-item" tab-switch="modules>templates"> <?php _e( 'Templates', 'totalpoll' ); ?> </div> <div class="totalpoll-page-tabs-item" tab-switch="modules>extensions"> <?php _e( 'Extensions', 'totalpoll' ); ?> </div> </div> <modules-manager ng-show="isCurrentTab('modules>templates') || isCurrentTab('modules>extensions')" type="isCurrentTab('modules>templates') ? 'templates' : 'extensions'"></modules-manager> <modules-installer tab="modules>install" class="active"></modules-installer>
<?php include __DIR__ . '/install.php'; ?> <?php include __DIR__ . '/manager.php'; ?> </div>
|