wp/wp-content/plugins/codecanyon-3027163-content-timeline-responsive-wordpress-plugin/pages/content_timeline_frontend.php
changeset 14 00ac8f60d73f
parent 13 d255fe9cd479
child 15 3d4e9c994f10
--- a/wp/wp-content/plugins/codecanyon-3027163-content-timeline-responsive-wordpress-plugin/pages/content_timeline_frontend.php	Tue Oct 15 15:48:13 2019 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,77 +0,0 @@
-<?php 
-include_once($this->path . '/pages/default_settings.php');
-
-
-global $wpdb;
-if($id) {
-	global $wpdb;
-	$timeline = $wpdb->get_results('SELECT * FROM ' . $wpdb->base_prefix . 'ctimelines WHERE id='.$id);
-	$timeline = $timeline[0];
-}
-$title = $timeline->name;
-$cats = "[";
-$catArray = array();
-$ccNumbers = array();
-$catNumber = 0;
-
-foreach(explode('||',$timeline->settings) as $val) {
-	$expl = explode('::',$val);
-	if(substr($expl[0], 0, 8) == 'cat-name') {
-		if($cats != "[") $cats .= ",";
-		$cc = get_cat_name(intval(substr($expl[0], 9)));
-		$cats .= "'".$cc."'";
-		array_push ($catArray,$cc);
-		array_push ($ccNumbers, 0);
-		$catNumber++;
-	}
-	else {
-		$settings[$expl[0]] = $expl[1];
-	}
-	
-}
-$cats .= "]";
-
-
-if($settings['read-more'] == 'whole-item') {
-	$read_more = "'.item'";
-	$swipeOn = 'false';
-}
-else if ($settings['read-more'] == 'button') {
-	$read_more = "'.read_more'";
-	$swipeOn = 'true';
-}
-else {
-	$read_more = "'none'";
-	$swipeOn = 'true';
-}
-
-if($settings['cat-type'] == 'categories') {
-	$cats = ',
-		categories : '.$cats . ', 
-		numberOfSegments : [';
-	$cats .= $settings['number-of-posts'];
-	for ($i = 1; $i < $catNumber; $i++) {
-		$cats .= ', '. $settings['number-of-posts'];
-	}
-	$cats .= ']';
-}
-else {
-	$cats = '';
-}
-if ($timeline->items != '') {
-	$explode = explode('||',$timeline->items);
-	$open_content_height = intval($settings['item-height']) - intval($settings['item-open-image-height']) - 2*intval($settings['item-open-content-padding']) -intval($settings['item-open-image-border-width']) - 6;
-	
-	$itemsArray = array();
-	foreach ($explode as $it) {
-		$ex2 = explode('::', $it);
-		$key = substr($ex2[0],0,strpos($ex2[0],'-'));
-		$subkey = substr($ex2[0],strpos($ex2[0],'-')+1);
-		$itemsArray[$key][$subkey] = $ex2[1];
-	}
-}
-
-
-include_once($this->path . '/pages/front_html.php');
-include_once($this->path . '/pages/front_script.php');
-?>
\ No newline at end of file