From 9b8b2424da689614c4d8e2fb6bab121ee8f0b4e1 Mon Sep 17 00:00:00 2001 From: jmontoyaa Date: Fri, 5 Jan 2018 13:13:50 +0100 Subject: [PATCH] Minor - phpcs fixes --- src/CoreBundle/Form/BranchType.php | 1 - src/CoreBundle/Framework/Container.php | 3 +- src/CoreBundle/Framework/PageController.php | 86 ++++++------- src/CoreBundle/Menu/LeftMenuBuilder.php | 135 ++++++++++---------- src/CoreBundle/Menu/NavBuilder.php | 68 +++++----- 5 files changed, 143 insertions(+), 150 deletions(-) diff --git a/src/CoreBundle/Form/BranchType.php b/src/CoreBundle/Form/BranchType.php index 52bee79ad5..552bce1885 100644 --- a/src/CoreBundle/Form/BranchType.php +++ b/src/CoreBundle/Form/BranchType.php @@ -6,7 +6,6 @@ namespace Chamilo\CoreBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolverInterface; -use Entity; class BranchType extends AbstractType { diff --git a/src/CoreBundle/Framework/Container.php b/src/CoreBundle/Framework/Container.php index 661bcd7f65..28a0c4359b 100644 --- a/src/CoreBundle/Framework/Container.php +++ b/src/CoreBundle/Framework/Container.php @@ -245,7 +245,7 @@ class Container */ public static function getMailer() { - return self::$container->get('mailer'); + return self::$container->get('mailer'); } /** @@ -338,5 +338,4 @@ class Container { return self::$container->get('chamilo_course.tool_chain'); } - } diff --git a/src/CoreBundle/Framework/PageController.php b/src/CoreBundle/Framework/PageController.php index ca953c1785..6f553b435f 100644 --- a/src/CoreBundle/Framework/PageController.php +++ b/src/CoreBundle/Framework/PageController.php @@ -48,7 +48,7 @@ class PageController get_lang('MenuGeneral'), null, 'help_block', - array('content' => $home_menu_content) + ['content' => $home_menu_content] ); } } @@ -60,18 +60,18 @@ class PageController public function returnSkillsLinks() { if (api_get_setting('skill.allow_skills_tool') == 'true') { - $content = array(); - $content[] = array( + $content = []; + $content[] = [ 'title' => get_lang('MySkills'), 'href' => api_get_path(WEB_CODE_PATH).'social/skills_wheel.php' - ); + ]; if (api_get_setting('skill.allow_hr_skills_management') == 'true' || api_is_platform_admin()) { - $content[] = array( + $content[] = [ 'title' => get_lang('ManageSkills'), 'href' => api_get_path(WEB_CODE_PATH).'admin/skills_wheel.php' - ); + ]; } $this->show_right_block(get_lang("Skills"), $content, 'skill_block'); } @@ -96,9 +96,9 @@ class PageController if (!empty($home_notice)) { $home_notice = api_to_system_encoding($home_notice, api_detect_encoding(strip_tags($home_notice))); - $home_notice = Display::div($home_notice, array('class' => 'homepage_notice')); + $home_notice = Display::div($home_notice, ['class' => 'homepage_notice']); - $this->show_right_block(get_lang('Notice'), null, 'notice_block', array('content' => $home_notice)); + $this->show_right_block(get_lang('Notice'), null, 'notice_block', ['content' => $home_notice]); } } @@ -117,12 +117,12 @@ class PageController if (!empty($id)) { $params['id'] = $id; } - $block_menu = array( + $block_menu = [ 'id' => $params['id'], 'title' => $title, 'elements' => $content, 'content' => isset($params['content']) ? $params['content'] : null - ); + ]; //$app['template']->assign($id, $block_menu); } @@ -272,7 +272,7 @@ class PageController ); } if (!empty($classes)) { - $classes = Display::tag('ul', $classes, array('class' => 'nav nav-list')); + $classes = Display::tag('ul', $classes, ['class' => 'nav nav-list']); $html .= $this->show_right_block(get_lang('Classes'), $classes, 'classes_block'); } } @@ -287,7 +287,7 @@ class PageController */ public function return_exercise_block($personal_course_list, $tpl) { - $exercise_list = array(); + $exercise_list = []; if (!empty($personal_course_list)) { foreach ($personal_course_list as $course_item) { $course_code = $course_item['c']; @@ -475,7 +475,6 @@ class PageController $courses_list_string = ''; $courses_shown = 0; if ($numrows > 0) { - $courses_list_string .= Display::page_header(get_lang('CourseList')); $courses_list_string .= "'; - $this->show_right_block(get_lang('MainNavigation'), null, 'navigation_block', array('content' => $content)); + $this->show_right_block(get_lang('MainNavigation'), null, 'navigation_block', ['content' => $content]); } } } diff --git a/src/CoreBundle/Menu/LeftMenuBuilder.php b/src/CoreBundle/Menu/LeftMenuBuilder.php index a8ed7f18d3..67fa6c39c3 100644 --- a/src/CoreBundle/Menu/LeftMenuBuilder.php +++ b/src/CoreBundle/Menu/LeftMenuBuilder.php @@ -93,7 +93,6 @@ class LeftMenuBuilder implements ContainerAwareInterface ], ] ); - } return $menu; @@ -154,62 +153,62 @@ class LeftMenuBuilder implements ContainerAwareInterface $menu->addChild( $translator->trans('Inbox'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'messages/inbox.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Compose'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'messages/new_message.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('PendingInvitations'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/invitations.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('MyFiles'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/myfiles.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('EditProfile'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'messages/inbox.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Inbox'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'messages/inbox.php', - ), - ) + ], + ] ); } @@ -233,82 +232,82 @@ class LeftMenuBuilder implements ContainerAwareInterface $menu->addChild( $translator->trans('Home'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/home.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Messages'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'messages/inbox.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Invitations'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/invitations.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('ViewMySharedProfile'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/profile.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Friends'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/friends.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('SocialGroups'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/groups.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Search'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/search.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('MyFiles'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/myfiles.php', - ), - ) + ], + ] ); } @@ -396,14 +395,14 @@ class LeftMenuBuilder implements ContainerAwareInterface $menu->addChild( $translator->trans( 'registration.submit', - array(), + [], 'FOSUserBundle' ), - array( + [ 'route' => 'main', 'routeParameters' => ['name' => 'auth/inscription.php'], - array("attributes" => array("id" => 'nav')), - ) + ["attributes" => ["id" => 'nav']], + ] ); } @@ -411,15 +410,15 @@ class LeftMenuBuilder implements ContainerAwareInterface $menu->addChild( $translator->trans( 'resetting.request.submit', - array(), + [], 'FOSUserBundle' ), - array( + [ //'route' => 'fos_user_resetting_request', 'route' => 'main', 'routeParameters' => ['name' => 'auth/lostPassword.php'], - array("attributes" => array("id" => 'nav')), - ) + ["attributes" => ["id" => 'nav']], + ] ); } @@ -437,10 +436,10 @@ class LeftMenuBuilder implements ContainerAwareInterface $menu = $factory->createItem('main'); $menu->addChild( $translator->trans('Forum'), - array( + [ 'uri' => 'https://chamilo.org/forum/', - array("attributes" => array("id" => 'nav')), - ) + ["attributes" => ["id" => 'nav']], + ] ); return $menu; diff --git a/src/CoreBundle/Menu/NavBuilder.php b/src/CoreBundle/Menu/NavBuilder.php index e847ea88b6..ce85a67777 100644 --- a/src/CoreBundle/Menu/NavBuilder.php +++ b/src/CoreBundle/Menu/NavBuilder.php @@ -27,7 +27,7 @@ class NavBuilder implements ContainerAwareInterface * * @return \Knp\Menu\ItemInterface */ - public function createCategoryMenu(array $itemOptions = array(), $currentUri = null) + public function createCategoryMenu(array $itemOptions = [], $currentUri = null) { $factory = $this->container->get('knp_menu.factory'); $menu = $factory->createItem('categories', $itemOptions); @@ -42,12 +42,12 @@ class NavBuilder implements ContainerAwareInterface * @param array $options The item options * @param string $currentUri The current URI */ - public function buildCategoryMenu(ItemInterface $menu, array $options = array(), $currentUri = null) + public function buildCategoryMenu(ItemInterface $menu, array $options = [], $currentUri = null) { //$categories = $this->categoryManager->getCategoryTree(); //$this->fillMenu($menu, $categories, $options, $currentUri); - $menu->addChild('home', array('route' => 'home')); + $menu->addChild('home', ['route' => 'home']); } /** @@ -66,61 +66,61 @@ class NavBuilder implements ContainerAwareInterface $menu->addChild( $translator->trans('Home'), - array('route' => 'home') + ['route' => 'home'] ); if ($checker->isGranted('IS_AUTHENTICATED_FULLY')) { $menu->addChild( $translator->trans('MyCourses'), - array('route' => 'userportal') + ['route' => 'userportal'] ); $menu->addChild( $translator->trans('Calendar'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'calendar/agenda_js.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Reporting'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'mySpace/index.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Social'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'social/home.php', - ), - ) + ], + ] ); if ($checker->isGranted('ROLE_ADMIN')) { $menu->addChild( $translator->trans('Dashboard'), - array( + [ 'route' => 'main', - 'routeParameters' => array( + 'routeParameters' => [ 'name' => 'dashboard/index.php', - ), - ) + ], + ] ); $menu->addChild( $translator->trans('Administration'), - array( + [ 'route' => 'administration', - ) + ] ); } } @@ -137,13 +137,13 @@ class NavBuilder implements ContainerAwareInterface foreach ($categories as $category) { $faq->addChild( $category->getHeadline(), - array( + [ 'route' => 'faq', - 'routeParameters' => array( + 'routeParameters' => [ 'categorySlug' => $category->getSlug(), 'questionSlug' => '', - ), - ) + ], + ] )->setAttribute('divider_append', true); } } @@ -153,10 +153,10 @@ class NavBuilder implements ContainerAwareInterface $host = $site->getRequestContext()->getHost(); $siteManager = $this->container->get('sonata.page.manager.site'); /** @var Site $site */ - $site = $siteManager->findOneBy(array( - 'host' => array($host, 'localhost'), + $site = $siteManager->findOneBy([ + 'host' => [$host, 'localhost'], 'enabled' => true, - )); + ]); if ($site) { $pageManager = $this->container->get('sonata.page.manager.page'); @@ -195,12 +195,12 @@ class NavBuilder implements ContainerAwareInterface foreach ($page->getChildren() as $child) { $subMenu->addChild( $child->getName(), - array( + [ 'route' => $page->getRouteName(), - 'routeParameters' => array( + 'routeParameters' => [ 'path' => $child->getUrl(), - ), - ) + ], + ] )->setAttribute('divider_append', true); } }