Пример #1
0
 private function endOfPage()
 {
     $current_user = UserManager::instance()->getCurrentUser();
     $tour_factory = new Tuleap_TourFactory(ProjectManager::instance(), new URL());
     $custom_tours = $tour_factory->getToursForPage($current_user, $_SERVER['REQUEST_URI']);
     foreach ($custom_tours as $custom_tour) {
         if (!$current_user->getPreference($custom_tour->name)) {
             $this->addTour($custom_tour);
         }
     }
     if (!empty($this->tours)) {
         $this->appendJsonEncodedVariable('tuleap.tours', $this->tours);
     }
     $this->displayFooterJavascriptElements();
     if ($this->isInDebugMode()) {
         $this->showDebugInfo();
     }
     $this->render('end-of-page', null);
 }
Пример #2
0
<?php

/**
 * Copyright (c) Enalean, 2014. All Rights Reserved.
 *
 * This file is a part of Tuleap.
 *
 * Tuleap is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Tuleap is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Tuleap. If not, see <http://www.gnu.org/licenses/>.
 */
require_once 'pre.php';
$tour_factory = new Tuleap_TourFactory(ProjectManager::instance(), new Url());
$current_tour = $tour_factory->getTour($current_user, $request->get('tour_name'));
$stats_dao = new Tuleap_TourUsageStatsDao();
$tour_usage = new Tuleap_TourUsage($stats_dao);
$tour_usage->endTour($current_user, $current_tour, $request->getValidated('current_step', 'uint'));