WP File Manager
Current Path:
/
home
/
translil
/
www
/
amitram
/
multimedia
/
plugins
/
TakeATour
/
tours
/
2_9_0
/
Name
Action
..
config.inc.php
Edit
tour.tpl
Edit
Editing: config.inc.php
<?php /********************************** * REQUIRED PATH TO THE TPL FILE */ $TOUR_PATH = PHPWG_PLUGINS_PATH.'TakeATour/tours/2_9_0/tour.tpl'; /*********************************/ $template->assign('TAT_HAS_ORPHANS', count(get_orphans()) > 0 ? true : false); // category id for example of delete options. To illustrate the new // features, we need an album with photos. if (!isset($_SESSION['TAT_tour29_delete_cat_id'])) { $query = ' SELECT category_id FROM '.IMAGE_CATEGORY_TABLE.' LIMIT 1 ;'; $rows = query2array($query); if (count($rows) == 0) { $_SESSION['TAT_tour29_delete_cat_id'] = -1; } else { $_SESSION['TAT_tour29_delete_cat_id'] = $rows[0]['category_id']; } } if ($_SESSION['TAT_tour29_delete_cat_id'] > 0) { $template->assign('TAT_tour29_delete_cat_id', $_SESSION['TAT_tour29_delete_cat_id']); } if (!isset($_SESSION['TAT_tour29_image_id'])) { $query = ' SELECT id FROM '.IMAGES_TABLE.' ORDER BY id DESC LIMIT 1 ;'; $images = query2array($query); if (count($images) == 0) { $_SESSION['TAT_tour29_image_id'] = -1; } else { $_SESSION['TAT_tour29_image_id'] = $images[0]['id']; } } if ($_SESSION['TAT_tour29_image_id'] > 0) { $template->assign('TAT_tour29_image_id', $_SESSION['TAT_tour29_image_id']); } $template->assign('TAT_tour29_history_url', 'admin.php?page=stats&year='.date('Y').'&month='.date('n')); $query = ' SELECT COUNT(*) FROM '.TAGS_TABLE.' ;'; list($counter) = pwg_db_fetch_row(pwg_query($query)); if ($counter > 0) { $template->assign('TAT_tour29_has_tags', true); } ?>