Example #1
0
 static function get_skin_path()
 {
     $skin = self::get_active_skin();
     $default_skin = 'ssp_skins' . DIRECTORY_SEPARATOR . 'default' . DIRECTORY_SEPARATOR;
     if ($skin == 'default' || !self::validate_skin()) {
         return muneeb_ssp_view_path($default_skin, false);
     }
     return $skin;
 }
 function intro_box()
 {
     if (isset($_GET['post_type'])) {
         if ($_GET['post_type'] === "ssp_slider") {
         }
     }
     include muneeb_ssp_view_path(__FUNCTION__);
     return FALSE;
 }
Example #3
0
 function intro_box()
 {
     if (get_post_type() !== SLIDER_PLUGIN_SLIDER_POST_TYPE) {
         return FALSE;
     }
     include muneeb_ssp_view_path(__FUNCTION__);
 }
Example #4
0
function muneeb_load_default_slider_skin()
{
    $default_skin = 'ssp_skins' . DIRECTORY_SEPARATOR . 'default' . DIRECTORY_SEPARATOR . 'functions.php';
    include muneeb_ssp_view_path($default_skin, FALSE);
    muneeb_ssp_default_slider_skin_hooks();
}
Example #5
0
			</div>
	</div>
		</div>
	
	<?php 
}
?>

</div>

<div class="table_footer">
	<div class="order_message">
		<?php 
_e('Drag and drop to reorder', 'ssp');
?>
	</div>
	<a href="javascript:;" id="add_slide_button" class="ssp-button">
		<?php 
_e('+ Add Slide', 'ssp');
?>
	</a>
</div>

<input type="hidden" value="<?php 
echo count($slides);
?>
" id="next_slide_id" />

<?php 
include muneeb_ssp_view_path('new_slide_template.php');