Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
pull/2487/head
Scrutinizer Auto-Fixer 8 years ago
parent ee25dc43fb
commit a4d28af0e4
  1. 3
      custompages/language.php
  2. 4
      main/announcements/download.php
  3. 5
      main/course_progress/thematic_plan.php
  4. 5
      main/document/edit_draw.php
  5. 3
      main/exercise/overview.php
  6. 4
      main/gradebook/gradebook_add_result.php
  7. 5
      main/gradebook/lib/fe/gradebooktable.class.php
  8. 2
      main/mySpace/access_details.php
  9. 3
      main/reports/index.php
  10. 7
      main/reports/reports.cli.php
  11. 3
      main/session/session_add.php
  12. 2
      main/session/session_course_list.php
  13. 5
      main/ticket/tickets.php
  14. 12
      main/tracking/course_session_report.php
  15. 3
      main/tracking/lp_results_by_user.php
  16. 28
      plugin/vchamilo/cli/bulkdestroynodes.php
  17. 2
      plugin/vchamilo/views/manage.controller.php
  18. 3
      src/Chamilo/CoreBundle/Component/Editor/Finder.php
  19. 29
      src/Chamilo/CourseBundle/Component/CourseCopy/CourseRestorer.php
  20. 18
      src/Chamilo/ThemeBundle/Controller/WidgetController.php
  21. 3
      src/Chamilo/ThemeBundle/Form/FormDemoModelType.php
  22. 3
      src/Chamilo/ThemeBundle/Model/MessageInterface.php
  23. 3
      src/Chamilo/ThemeBundle/Model/MessageModel.php
  24. 3
      src/Chamilo/ThemeBundle/Model/NotificationInterface.php
  25. 3
      src/Chamilo/ThemeBundle/Model/TaskModel.php
  26. 3
      src/Chamilo/ThemeBundle/Model/UserInterface.php
  27. 6
      src/Chamilo/ThemeBundle/Model/UserModel.php
  28. 19
      src/Chamilo/ThemeBundle/Theme/ThemeManager.php
  29. 6
      src/Chamilo/ThemeBundle/Twig/WidgetExtension.php

@ -23,8 +23,9 @@ $chamilo_langs = array(
);
$lang_match = $chamilo_langs[get_preferred_language($available_langs)];
// recover previous value ...
if (isset($_SESSION['user_language_choice']))
if (isset($_SESSION['user_language_choice'])) {
$lang_match = $_SESSION['user_language_choice'];
}
// Chamilo parameter, on logout
if (isset($_REQUEST['language']) && !empty($_REQUEST['language']) && in_array($_REQUEST['language'], $chamilo_langs)) {

@ -43,7 +43,9 @@ if (is_dir($full_file_name)) {
//remove last slash if present
//$doc_url = ($doc_url{strlen($doc_url)-1}=='/')?substr($doc_url,0,strlen($doc_url)-1):$doc_url;
//mod_rewrite can change /some/path/ to /some/path// in some cases, so clean them all off (René)
while ($doc_url{$dul = strlen($doc_url)-1}=='/') $doc_url = substr($doc_url,0,$dul);
while ($doc_url{$dul = strlen($doc_url)-1}=='/') {
$doc_url = substr($doc_url,0,$dul);
}
//create the path
$document_explorer = api_get_path(WEB_COURSE_PATH).api_get_course_path(); // home course path
//redirect

@ -9,9 +9,10 @@
// actions menu
$new_thematic_plan_data = array();
if (!empty($thematic_plan_data))
foreach($thematic_plan_data as $thematic_item) {
if (!empty($thematic_plan_data)) {
foreach($thematic_plan_data as $thematic_item) {
$thematic_simple_list[] = $thematic_item['description_type'];
}
$new_thematic_plan_data[$thematic_item['description_type']] = $thematic_item;
}

@ -96,13 +96,14 @@ if (!empty($group_id)) {
$is_certificate_mode = DocumentManager::is_certificate_mode($dir);
if (!$is_certificate_mode)
if (!$is_certificate_mode) {
$interbreadcrumb[] = array(
"url" => "./document.php?curdirpath=".urlencode($my_cur_dir_path).'&'.api_get_cidreq(),
"name" => get_lang('Documents'),
);
else
} else {
$interbreadcrumb[] = array('url' => '../gradebook/'.$_SESSION['gradebook_dest'], 'name' => get_lang('Gradebook'));
}
// Interbreadcrumb for the current directory root path
if (empty($document_data['parents'])) {

@ -268,8 +268,7 @@ if (!empty($attempts)) {
case RESULT_DISABLE_SHOW_SCORE_ONLY:
if ($objExercise->feedback_type != EXERCISE_FEEDBACK_TYPE_END) {
$header_names = array(get_lang('Attempt'), get_lang('StartDate'), get_lang('IP'), get_lang('Score'));
}
else {
} else {
$header_names = array(get_lang('Attempt'), get_lang('StartDate'), get_lang('IP'), get_lang('Score'), get_lang('Details'));
}
break;

@ -41,7 +41,9 @@ if ($add_result_form->validate()) {
$res->set_evaluation_id($values['evaluation_id']);
$res->set_user_id(key($scores));
//if no scores are given, don't set the score
if ((!empty ($row)) || ($row == '0')) $res->set_score($row);
if ((!empty ($row)) || ($row == '0')) {
$res->set_score($row);
}
$res->add();
next($scores);
}

@ -254,10 +254,11 @@ class GradebookTable extends SortableTable
}
// Categories.
if (!empty($data_array))
foreach ($data_array as $data) {
if (!empty($data_array)) {
foreach ($data_array as $data) {
// list of items inside the gradebook (exercises, lps, forums, etc)
$row = array();
}
/** @var AbstractLink $item */
$item = $mainCategory = $data[0];

@ -144,7 +144,7 @@ $form->display();
</div><br />
<div id="cev_cont_stats">
<?php
if ($result_to_print != "") {
if ($result_to_print != "") {
$rst = get_stats($user_id, $courseId);
$foo_stats = '<strong>'.get_lang('Total').': </strong>'.$rst['total'].'<br />';
$foo_stats .= '<strong>'.get_lang('Average').': </strong>'.$rst['avg'].'<br />';

@ -25,8 +25,9 @@ $this_section = SECTION_REPORTS;
$tool_name=get_lang('Reports');
// Displaying the header
foreach (array('jquery.ba-bbq.min.js', 'jquery.validate.js', 'jquery.form.js', 'jquery.form.wizard.js', 'jquery.dataTables.min.js') as $js)
foreach (array('jquery.ba-bbq.min.js', 'jquery.validate.js', 'jquery.form.js', 'jquery.form.wizard.js', 'jquery.dataTables.min.js') as $js) {
$htmlHeadXtra[] = '<script src="'.api_get_path(WEB_LIBRARY_PATH).'javascript/'.$js.'" type="text/javascript" language="javascript"></script>'."\n";
}
// FIXME
$htmlHeadXtra[] = ' <style type="text/css">

@ -32,9 +32,9 @@ $options = getopt("", $longopts);
echo "\n\n";
if (array_key_exists('help', $options))
if (array_key_exists('help', $options)) {
echo "help message\n";
else if (array_key_exists('clearAll', $options)) {
} else if (array_key_exists('clearAll', $options)) {
reports_clearAll();
} else if (array_key_exists('build', $options)) {
reports_build();
@ -51,8 +51,9 @@ else if (array_key_exists('clearAll', $options)) {
$options['ssci'], $options['sscn'],
$options['link']);
echo "\n";
} else
} else {
echo "action not found\n";
}
echo "\n";
?>

@ -127,7 +127,8 @@ $tool_name = get_lang('AddSession');
$urlAction = api_get_self();
function check_session_name($name) {
function check_session_name($name)
{
$session = SessionManager::get_session_by_name($name);
return empty($session) ? true : false;

@ -38,7 +38,7 @@ if ($action == 'delete') {
$idChecked = $_REQUEST['idChecked'];
if (is_array($idChecked) && count($idChecked)>0) {
$my_temp = array();
foreach ($idChecked as $id){
foreach ($idChecked as $id) {
$my_temp[]= Database::escape_string($id);// forcing the escape_string
}
$idChecked = $my_temp;

@ -127,8 +127,8 @@ $user_id = api_get_user_id();
$isAdmin = api_is_platform_admin();
Display::display_header(get_lang('MyTickets'));
if (!empty($projectId))
if ($isAdmin) {
if (!empty($projectId)) {
if ($isAdmin) {
$getParameters = [
'keyword',
'keyword_status',
@ -140,6 +140,7 @@ if ($isAdmin) {
'Tickets_per_page',
'Tickets_column'
];
}
$get_parameter = '';
foreach ($getParameters as $getParameter) {
if (isset($_GET[$getParameter])) {

@ -47,8 +47,16 @@ if (count($session_list) == 0) {
$form->addElement('select', 'session_id', get_lang('Sessions'), $my_session_list);
$form->addButtonFilter(get_lang('Filter'));
if (!empty($_REQUEST['score'])) $filter_score = intval($_REQUEST['score']); else $filter_score = 70;
if (!empty($_REQUEST['session_id'])) $session_id = intval($_REQUEST['session_id']); else $session_id = 0;
if (!empty($_REQUEST['score'])) {
$filter_score = intval($_REQUEST['score']);
} else {
$filter_score = 70;
}
if (!empty($_REQUEST['session_id'])) {
$session_id = intval($_REQUEST['session_id']);
} else {
$session_id = 0;
}
if (empty($session_id)) {
$session_id = key($my_session_list);

@ -73,8 +73,9 @@ if ($global) {
//$form->addElement('submit','submit',get_lang('Filter'));
$form->addButtonFilter(get_lang('Filter'));
if (!empty($_REQUEST['course_code']))
if (!empty($_REQUEST['course_code'])) {
$selected_course = $_REQUEST['course_code'];
}
if (!empty($selected_course)) {
$selected_course = api_get_course_info($selected_course);
$course_list = array($selected_course);

@ -92,25 +92,39 @@ if (!empty($options['config'])) {
}
require_once($_configuration['root_sys'].'local/classes/database.class.php'); // cli only functions
if ($options['verbose']) echo "loaded dbclass\n";
if ($options['verbose']) {
echo "loaded dbclass\n";
}
require_once($_configuration['root_sys'].'local/classes/textlib.class.php'); // cli only functions
if ($options['verbose']) echo "loaded textlib\n";
if ($options['verbose']) {
echo "loaded textlib\n";
}
require_once($_configuration['root_sys'].'local/classes/mootochamlib.php'); // moodle like API
if ($options['verbose']) echo "loaded moodle wrapping\n";
if ($options['verbose']) {
echo "loaded moodle wrapping\n";
}
require_once($_configuration['root_sys'] . '/plugin/vchamilo/lib/vchamilo_plugin.class.php');
if ($options['verbose']) echo "loaded vchamilo plugin\n";
if ($options['verbose']) {
echo "loaded vchamilo plugin\n";
}
global $DB;
if ($options['verbose']) echo "building database manager\n";
if ($options['verbose']) {
echo "building database manager\n";
}
$DB = new DatabaseManager();
if ($options['verbose']) echo "building plugin vchamilo\n";
if ($options['verbose']) {
echo "building plugin vchamilo\n";
}
$plugin = VChamiloPlugin::create();
if (empty($options['nodes'])) {
cli_error(get_string('climissingnodes', 'block_vmoodle'));
}
if ($options['verbose']) echo "parsing nodelist\n";
if ($options['verbose']) {
echo "parsing nodelist\n";
}
$nodes = vchamilo_parse_csv_nodelist($options['nodes'], $plugin);
if ($options['lint']) {

@ -302,7 +302,7 @@ switch ($action) {
case 'clearcache':
// Removes cache directory.
if (empty($automation)) {
if (array_key_exists('vids', $_REQUEST)) {
if (array_key_exists('vids', $_REQUEST)) {
$toclear = Database::select('*', 'vchamilo', array('where' => array("id IN ('$vidlist')" => array())));
} else {
$vid = isset($_REQUEST['vid']) ? $_REQUEST['vid'] : 0;

@ -29,7 +29,8 @@ class Finder extends \elFinder
* @param array elFinder and roots configurations
* @author Dmitry (dio) Levashov
*/
public function __construct($opts) {
public function __construct($opts)
{
// set error handler of WARNING, NOTICE
$errLevel = E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_STRICT | E_RECOVERABLE_ERROR;
if (defined('E_DEPRECATED')) {

@ -931,7 +931,7 @@ class CourseRestorer
* see #7029
*/
public function restore_scorm_documents()
{
{
$perm = api_get_permissions_for_new_directories();
if ($this->course->has_resources(RESOURCE_SCORM)) {
@ -1008,7 +1008,7 @@ class CourseRestorer
* @param int $sessionId
*/
public function restore_forums($sessionId = 0)
{
{
if ($this->course->has_resources(RESOURCE_FORUM)) {
$sessionId = intval($sessionId);
$table_forum = Database::get_course_table(TABLE_FORUM);
@ -2676,7 +2676,7 @@ class CourseRestorer
// Updating prerequisites
foreach ($old_prerequisite as $key=>$my_old_prerequisite) {
if ($my_old_prerequisite != ''){
if ($my_old_prerequisite != '') {
$sql = "UPDATE ".$table_item." SET prerequisite = '".$my_old_prerequisite."'
WHERE c_id = ".$this->destination_course_id." AND id = '".$key."' ";
Database::query($sql);
@ -2694,7 +2694,7 @@ class CourseRestorer
foreach ($parent_item_ids as $new_item_id => $parent_item_old_id) {
$parent_new_id = 0;
if($parent_item_old_id != 0){
if($parent_item_old_id != 0) {
$parent_new_id = $new_item_ids[$parent_item_old_id];
}
$sql = "UPDATE ".$table_item." SET parent_item_id = '".$parent_new_id."'
@ -2703,7 +2703,7 @@ class CourseRestorer
}
foreach ($previous_item_ids as $new_item_id => $previous_item_old_id) {
$previous_new_id = 0;
if ($previous_item_old_id != 0){
if ($previous_item_old_id != 0) {
$previous_new_id = $new_item_ids[$previous_item_old_id];
}
$sql = "UPDATE ".$table_item." SET previous_item_id = '".$previous_new_id."'
@ -2713,7 +2713,7 @@ class CourseRestorer
foreach ($next_item_ids as $new_item_id => $next_item_old_id) {
$next_new_id = 0;
if ($next_item_old_id != 0){
if ($next_item_old_id != 0) {
$next_new_id = $new_item_ids[$next_item_old_id];
}
$sql = "UPDATE ".$table_item." SET next_item_id = '".$next_new_id."'
@ -2723,7 +2723,7 @@ class CourseRestorer
foreach ($prerequisite_ids as $new_item_id => $prerequisite_old_id) {
$prerequisite_new_id = 0;
if ($prerequisite_old_id != 0){
if ($prerequisite_old_id != 0) {
$prerequisite_new_id = $new_item_ids[$prerequisite_old_id];
}
$sql = "UPDATE ".$table_item." SET prerequisite = '".$prerequisite_new_id."'
@ -2741,7 +2741,7 @@ class CourseRestorer
*
*/
public function restore_student_publication($sessionId = 0)
{
{
$sessionId = intval($sessionId);
$work_assignment_table = Database:: get_course_table(TABLE_STUDENT_PUBLICATION_ASSIGNMENT);
$work_table = Database:: get_course_table(TABLE_STUDENT_PUBLICATION);
@ -2841,8 +2841,10 @@ class CourseRestorer
if (!is_dir($dest)) {
mkdir($dest, api_get_permissions_for_new_directories());
}
if ($handle = opendir($source)) { // if the folder exploration is sucsessful, continue
while (false !== ($file = readdir($handle))) { // as long as storing the next file to $file is successful, continue
if ($handle = opendir($source)) {
// if the folder exploration is sucsessful, continue
while (false !== ($file = readdir($handle))) {
// as long as storing the next file to $file is successful, continue
if ($file != '.' && $file != '..') {
$path = $source . '/' . $file;
if (is_file($path)) {
@ -2851,8 +2853,9 @@ class CourseRestorer
echo '<font color="red">File ('.$path.') '.get_lang('NotHavePermission').'</font>';
}*/
} elseif(is_dir($path)) {
if (!is_dir($dest . '/' . $file))
mkdir($dest . '/' . $file);
if (!is_dir($dest . '/' . $file)) {
mkdir($dest . '/' . $file);
}
self:: allow_create_all_directory($path, $dest . '/' . $file, $overwrite);
}
}
@ -3380,7 +3383,7 @@ class CourseRestorer
public function DBUTF8_array($array)
{
if (UTF8_CONVERT) {
foreach ($array as &$item) {
foreach ($array as &$item) {
$item = utf8_encode($item);
}
return $array;

@ -12,19 +12,27 @@ use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class WidgetController extends Controller {
class WidgetController extends Controller
{
public function defaultBoxAction() {
public function defaultBoxAction()
{
}
public function solidBoxAction() {}
public function solidBoxAction()
{
}
public function tiledBoxAction() {}
public function tiledBoxAction()
{
}
public function smallBoxAction() {}
public function smallBoxAction()
{
}
}

@ -11,7 +11,8 @@ use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class FormDemoModelType extends AbstractType{
class FormDemoModelType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{

@ -12,7 +12,8 @@ namespace Chamilo\ThemeBundle\Model;
* Representation of a displayable message in the theme's messages section
*
*/
interface MessageInterface {
interface MessageInterface
{
/**
* Returns the sender
*

@ -157,7 +157,8 @@ class MessageModel implements MessageInterface
*
* @return string
*/
public function getIdentifier() {
public function getIdentifier()
{
return $this->getSubject();
}

@ -8,7 +8,8 @@
namespace Chamilo\ThemeBundle\Model;
interface NotificationInterface {
interface NotificationInterface
{
public function getMessage();
public function getType();
public function getIcon();

@ -119,7 +119,8 @@ class TaskModel implements TaskInterface
return $this->title;
}
public function getIdentifier() {
public function getIdentifier()
{
return $this->title;
}

@ -8,7 +8,8 @@
namespace Chamilo\ThemeBundle\Model;
interface UserInterface {
interface UserInterface
{
public function getAvatar();
public function getUsername();
public function getMemberSince();

@ -8,7 +8,8 @@
namespace Chamilo\ThemeBundle\Model;
class UserModel implements UserInterface {
class UserModel implements UserInterface
{
/**
* @var string
@ -124,7 +125,8 @@ class UserModel implements UserInterface {
return $this->getIsOnline();
}
public function getIdentifier() {
public function getIdentifier()
{
return str_replace(' ', '-', $this->getUsername());
}
}

@ -52,7 +52,8 @@ class ThemeManager
}
public function registerStyle($id, $src, $deps = array()) {
public function registerStyle($id, $src, $deps = array())
{
if(!isset($this->stylesheets[$id])) {
$this->stylesheets[$id] = array(
'src' => $src,
@ -61,7 +62,8 @@ class ThemeManager
}
}
public function getScripts($location = 'bottom') {
public function getScripts($location = 'bottom')
{
$unsorted = array(); $srcList = array(); $assetList = array();
foreach($this->javascripts as $id => $scriptDefinition) {
@ -71,16 +73,17 @@ class ThemeManager
}
$queue = $this->getResolver()->register($unsorted)->resolveAll();
foreach($queue as $def){
foreach($queue as $def) {
$srcList[] = $def['src'];
}
return $srcList;
}
public function getStyles() {
public function getStyles()
{
$srcList = array();
$queue = $this->getResolver()->register($this->stylesheets)->resolveAll();
foreach($queue as $def){
foreach($queue as $def) {
$srcList[] = $def['src'];
}
return $srcList;
@ -89,7 +92,8 @@ class ThemeManager
/**
* @return DependencyResolverInterface
*/
protected function getResolver() {
protected function getResolver()
{
$class = $this->resolverClass;
return new $class;
}
@ -97,7 +101,8 @@ class ThemeManager
/**
* @return FileLocator
*/
protected function getLocator() {
protected function getLocator()
{
return $this->container->get('file_locator');
}

@ -10,14 +10,16 @@ namespace Chamilo\ThemeBundle\Twig;
use Twig_Environment;
class WidgetExtension extends \Twig_Extension {
class WidgetExtension extends \Twig_Extension
{
/**
* @var Twig_Environment
*/
protected $env;
public function renderWidget() {
public function renderWidget()
{
}

Loading…
Cancel
Save