You are here

class LearningPathContentController in Opigno Learning path 8

Same name and namespace in other branches
  1. 3.x src/Controller/LearningPathContentController.php \Drupal\opigno_learning_path\Controller\LearningPathContentController

Controller for all the actions of the Learning Path content.

Hierarchy

Expanded class hierarchy of LearningPathContentController

File

src/Controller/LearningPathContentController.php, line 31

Namespace

Drupal\opigno_learning_path\Controller
View source
class LearningPathContentController extends ControllerBase {
  private $content_types_manager;
  protected $currentUser;

  /**
   * {@inheritdoc}
   */
  public function __construct(OpignoGroupContentTypesManager $content_types_manager, AccountProxy $current_account) {
    $this->content_types_manager = $content_types_manager;
    $this->currentUser = $current_account;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('opigno_group_manager.content_types.manager'), $container
      ->get('current_user'));
  }

  /**
   * Root page for angular app.
   */
  public function coursesIndex(Group $group, Request $request) {

    // Check if user has uncompleted steps.
    $validation = LearningPathValidator::stepsValidate($group);
    $gid = $group
      ->id();
    if ($validation instanceof RedirectResponse) {
      return $validation;
    }
    $group_type = $group
      ->get('type')
      ->getString();
    $next_link = $this
      ->getNextLink($group);
    $view_type = $group_type == 'opigno_course' ? 'manager' : 'modules';
    $tempstore = \Drupal::service('user.private_tempstore')
      ->get('opigno_group_manager');
    return [
      '#theme' => 'opigno_learning_path_courses',
      '#attached' => [
        'library' => [
          'opigno_group_manager/manage_app',
        ],
      ],
      '#base_path' => $request
        ->getBasePath(),
      '#base_href' => $request
        ->getPathInfo(),
      '#learning_path_id' => $gid,
      '#group_type' => $group_type,
      '#view_type' => $view_type,
      '#next_link' => isset($next_link) ? render($next_link) : NULL,
      '#user_has_info_card' => $tempstore
        ->get('hide_info_card') ? FALSE : TRUE,
      '#parent_learning_path' => $group_type == 'learning_path' ? '?learning_path=' . $gid : '',
    ];
  }

  /**
   * Root page for angular app.
   */
  public function modulesIndex(Group $group, Request $request) {

    // Check if user has uncompleted steps.
    $validation = LearningPathValidator::stepsValidate($group);
    if ($validation instanceof RedirectResponse) {
      return $validation;
    }
    $tempstore = \Drupal::service('user.private_tempstore')
      ->get('opigno_group_manager');
    $next_link = $this
      ->getNextLink($group);
    return [
      '#theme' => 'opigno_learning_path_modules',
      '#attached' => [
        'library' => [
          'opigno_group_manager/manage_app',
        ],
      ],
      '#base_path' => $request
        ->getBasePath(),
      '#base_href' => $request
        ->getPathInfo(),
      '#learning_path_id' => $group
        ->id(),
      '#module_context' => 'false',
      '#next_link' => isset($next_link) ? render($next_link) : NULL,
      '#user_has_info_card' => $tempstore
        ->get('hide_info_card') ? FALSE : TRUE,
    ];
  }

  /**
   * Returns next link.
   *
   * @param \Drupal\group\Entity\Group $group
   *   Group.
   *
   * @return array|mixed[]|null
   *   Next link.
   */
  public function getNextLink(Group $group) {
    $next_link = NULL;
    if ($group instanceof GroupInterface) {
      $current_step = opigno_learning_path_get_current_step();
      $user = \Drupal::currentUser();
      if ($current_step == 4 && !$group
        ->access('administer members', $user)) {

        // Hide link if user can't access members overview tab.
        return NULL;
      }
      $group_type_id = $group
        ->getGroupType()
        ->id();
      if ($group_type_id === 'learning_path') {
        $next_step = $current_step < 5 ? $current_step + 1 : NULL;
        $link_text = !$next_step ? t('Publish') : t('Next');
      }
      elseif ($group_type_id === 'opigno_course' && $current_step < 3) {
        $link_text = t('Next');
      }
      else {
        return $next_link;
      }
      $next_link = Link::createFromRoute($link_text, 'opigno_learning_path.content_steps', [
        'group' => $group
          ->id(),
        'current' => $current_step ? $current_step : 0,
      ], [
        'attributes' => [
          'class' => [
            'btn',
            'btn-success',
            'color-white',
          ],
        ],
      ])
        ->toRenderable();
    }
    return $next_link;
  }

  /**
   * This method is called on learning path load.
   *
   * It returns all the LP courses in JSON format.
   *
   * @param \Drupal\group\Entity\Group $group
   *   Group.
   *
   * @return \Symfony\Component\HttpFoundation\JsonResponse
   *   Response.
   */
  public function getCourses(Group $group) {

    // Init the response and get all the contents from this learning path.
    $courses = [];
    $group_content = $group
      ->getContent('subgroup:opigno_course');
    foreach ($group_content as $content) {

      /* @var $content \Drupal\group\Entity\GroupContent */

      /* @var $content_entity \Drupal\group\Entity\Group */
      $content_entity = $content
        ->getEntity();
      $courses[] = [
        'entity_id' => $content_entity
          ->id(),
        'name' => $content_entity
          ->label(),
      ];
    }

    // Return all the contents in JSON format.
    return new JsonResponse($courses, Response::HTTP_OK);
  }

  /**
   * This method is called on learning path load.
   *
   * It returns all the LP modules in JSON format.
   */
  public function getModules(Group $group) {

    // Init the response and get all the contents from this learning path.
    $modules = [];

    // Get the courses and modules within those.
    if ($group
      ->getGroupType()
      ->id() == 'learning_path') {
      $group_content = $group
        ->getContent('subgroup:opigno_course');
      foreach ($group_content as $content) {

        /* @var $content \Drupal\group\Entity\GroupContent */

        /* @var $content_entity \Drupal\group\Entity\Group */
        $course = $content
          ->getEntity();
        $course_contents = $course
          ->getContent('opigno_module_group');
        foreach ($course_contents as $course_content) {

          /* @var $module_entity \Drupal\opigno_module\Entity\OpignoModule */
          $module_entity = $course_content
            ->getEntity();
          $modules[] = [
            'entity_id' => $module_entity
              ->id(),
            'name' => $module_entity
              ->label(),
            'activity_count' => $this
              ->countActivityInModule($module_entity),
            'editable' => $module_entity
              ->access('update'),
          ];
        }
      }
    }

    // Get the direct modules.
    $group_content = $group
      ->getContent('opigno_module_group');
    foreach ($group_content as $content) {

      /* @var $content \Drupal\group\Entity\GroupContent */

      /* @var $content_entity \Drupal\opigno_module\Entity\OpignoModule */
      $content_entity = $content
        ->getEntity();
      $modules[] = [
        'entity_id' => $content_entity
          ->id(),
        'name' => $content_entity
          ->label(),
        'activity_count' => $this
          ->countActivityInModule($content_entity),
        'editable' => $content_entity
          ->access('update'),
      ];
    }

    // Sort according to position.
    $modules = $this
      ->sortModulesArray($modules, $group);

    // Return all the contents in JSON format.
    return new JsonResponse($modules, Response::HTTP_OK);
  }

  /**
   * Sort.
   *
   * @param array $modules
   *   Initial modules array.
   * @param \Drupal\Core\Entity\EntityInterface $group
   *   Training group.
   *
   * @return array
   *   Sorted modules array.
   *
   * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  protected function sortModulesArray(array $modules, EntityInterface $group) : array {
    try {
      $managed_contents = OpignoGroupManagedContent::loadByProperties([
        'group_id' => $group
          ->id(),
      ]);
    } catch (InvalidPluginDefinitionException $e) {
      return $modules;
    }

    // Creating full array of training steps and courses sub-steps.
    $modules_positioned = [];
    foreach ($managed_contents as $content) {
      $id = $content
        ->getEntityId();
      $x = $content
        ->getCoordinateX();
      $y = $content
        ->getCoordinateY();
      if ($content
        ->getGroupContentType()
        ->getId() == 'ContentTypeCourse') {

        // Course steps.
        if ($course_managed_contents = OpignoGroupManagedContent::loadByProperties([
          'group_id' => $content
            ->getEntityId(),
        ])) {
          foreach ($course_managed_contents as $course_content) {
            $course_id = $course_content
              ->getEntityId();
            $course_x = $course_content
              ->getCoordinateX();
            $course_y = $course_content
              ->getCoordinateY();
            foreach ($modules as $mod) {
              if ($mod['entity_id'] == $course_id) {
                $modules_positioned[$y][$x][$course_y][$course_x] = $mod;
              }
            }
          }
        }
      }
      else {

        // Ordinary steps.
        foreach ($modules as $module) {
          if ($module['entity_id'] == $id) {
            $modules_positioned[$y][$x] = $module;
          }
        }
      }
    }

    // Training steps sorting including courses sub-steps.
    ksort($modules_positioned);
    $sorted_modules = [];
    foreach ($modules_positioned as $items) {
      $is_course = FALSE;
      $item = NULL;
      foreach ($items as $item) {
        if (!array_key_exists('entity_id', $item)) {
          $is_course = TRUE;
        }
      }
      if ($is_course) {

        // Course steps.
        if (!empty($item)) {
          ksort($item);
          foreach ($item as $i) {
            $sorted_modules = array_merge($sorted_modules, $i);
          }
        }
      }
      else {

        // Ordinary steps.
        $sorted_modules = array_merge($sorted_modules, $items);
      }
    }
    return $sorted_modules;
  }

  /**
   * Returns module activities count.
   */
  public function countActivityInModule(OpignoModule $opigno_module) {

    /* @var $db_connection \Drupal\Core\Database\Connection */
    $db_connection = \Drupal::service('database');
    $query = $db_connection
      ->select('opigno_activity', 'oa');
    $query
      ->fields('oa', [
      'id',
    ]);
    $query
      ->fields('omr', [
      'omr_pid',
      'child_id',
    ]);
    $query
      ->addJoin('inner', 'opigno_activity_field_data', 'oafd', 'oa.id = oafd.id');
    $query
      ->addJoin('inner', 'opigno_module_relationship', 'omr', 'oa.id = omr.child_id');
    $query
      ->condition('oafd.status', 1);
    $query
      ->condition('omr.parent_id', $opigno_module
      ->id());
    if ($opigno_module
      ->getRevisionId()) {
      $query
        ->condition('omr.parent_vid', $opigno_module
        ->getRevisionId());
    }
    $query
      ->condition('omr_pid', NULL, 'IS');
    $result = $query
      ->execute();
    $result->allowRowCount = TRUE;
    return $result
      ->rowCount();
  }

  /**
   * This method is called on learning path load.
   *
   * It returns all the activities with the module.
   */
  public function getModuleActivities(OpignoModule $opigno_module) {
    $activities = $this
      ->getModuleActivitiesEntities($opigno_module);

    // Return all the contents in JSON format.
    return new JsonResponse($activities, Response::HTTP_OK);
  }

  /**
   * Returns Right access conditional activities with the module.
   */
  public function getModuleRequiredActivitiesAccess($opigno_entity_type, $opigno_entity_id) {

    // Check global roles.
    $roles = $this->currentUser
      ->getRoles();
    foreach ($roles as $role) {
      if (in_array($role, [
        'administrator',
        'content_manager',
      ])) {
        return AccessResult::allowed();
      }
    }

    // Check group roles.
    $group_id = OpignoGroupContext::getCurrentGroupId();
    if (LearningPathAccess::memberHasRole('admin', $this->currentUser, $group_id) || LearningPathAccess::memberHasRole('content_manager', $this->currentUser, $group_id)) {
      return AccessResult::allowed();
    }
    return AccessResult::allowedIfHasPermission($this->currentUser, 'bypass group access');
  }

  /**
   * Returns conditional activities with the module.
   *
   * @param \Drupal\opigno_module\Entity\OpignoModule $opigno_module
   *   Entity OpignoModule".
   * @param array $results
   *   Results.
   */
  protected function getModuleConditionals(OpignoModule $opigno_module, &$results = []) {
    if ($opigno_module) {
      $activities = $this
        ->getModuleActivitiesEntities($opigno_module);
      $conditional_h5p_types = [
        'H5P.TrueFalse',
        'H5P.MultiChoice',
      ];
      if ($activities) {

        // Get only H5P.TrueFalse/H5P.MultiChoice activities.
        foreach ($activities as $key => $activity) {
          $exclude = FALSE;
          $activity = OpignoActivity::load($activity->id);
          if ($activity
            ->hasField('opigno_h5p')) {
            $opigno_h5p = $activity
              ->get('opigno_h5p')
              ->getValue();
            if (!empty($opigno_h5p[0]['h5p_content_id']) && ($h5p_content_id = $opigno_h5p[0]['h5p_content_id'])) {
              $h5p_content = H5PContent::load($h5p_content_id);
              $library = $h5p_content
                ->getLibrary();
              if (!in_array($library->name, $conditional_h5p_types)) {
                $exclude = TRUE;
              }
              if ($library->name == 'H5P.TrueFalse') {
                $params = $h5p_content
                  ->getParameters();
                $activities[$key]->answers[0] = [
                  'id' => $activity
                    ->id() . '-0',
                  'correct' => $params->correct == 'true' ? TRUE : FALSE,
                  'text' => trim(strip_tags(nl2br(str_replace([
                    '\\n',
                    '\\r',
                  ], '', $params->l10n->trueText)))),
                ];
                $activities[$key]->answers[1] = [
                  'id' => $activity
                    ->id() . '-1',
                  'correct' => $params->correct == 'false' ? TRUE : FALSE,
                  'text' => trim(strip_tags(nl2br(str_replace([
                    '\\n',
                    '\\r',
                  ], '', $params->l10n->falseText)))),
                ];
              }
              if ($library->name == 'H5P.MultiChoice') {
                $answers = $h5p_content
                  ->getParameters()->answers;
                if ($answers) {
                  foreach ($answers as $k => $answer) {
                    $activities[$key]->answers[$k] = [
                      'id' => $activity
                        ->id() . '-' . $k,
                      'correct' => $answer->correct,
                      'text' => trim(strip_tags(nl2br(str_replace([
                        '\\n',
                        '\\r',
                      ], '', $answer->text)))),
                    ];
                  }
                }
              }
            }
            else {
              $exclude = TRUE;
            }
          }
          else {
            $exclude = TRUE;
          }
          if ($exclude) {
            unset($activities[$key]);
            $results['simple'] = TRUE;
          }
          else {
            $results['conditional'][] = $activities[$key];
          }
        }
      }
    }
  }

  /**
   * Returns conditional activities with the module.
   *
   * @param string $opigno_entity_type
   *   Entity type, like "ContentTypeModule" or "ContentTypeCourse".
   * @param string $opigno_entity_id
   *   Entity ID.
   *
   * @return \Symfony\Component\HttpFoundation\JsonResponse
   *   Json response.
   */
  public function getModuleRequiredActivities($opigno_entity_type, $opigno_entity_id) {
    $results = [
      'conditional' => [],
      'simple' => TRUE,
    ];
    if ($opigno_entity_type == 'ContentTypeModule') {
      $opigno_module = OpignoModule::load($opigno_entity_id);
      $this
        ->getModuleConditionals($opigno_module, $results);
    }
    if ($opigno_entity_type == 'ContentTypeCourse') {
      $course_steps = OpignoGroupManagedContent::loadByGroupId($opigno_entity_id);
      if (!empty($course_steps)) {

        // Check if each course module has at least one activity.
        foreach ($course_steps as $course_step) {
          $id = $course_step
            ->getEntityId();
          $opigno_module = OpignoModule::load($id);
          $this
            ->getModuleConditionals($opigno_module, $results);
        }
      }
    }

    // Return all the contents in JSON format.
    return new JsonResponse($results, Response::HTTP_OK);
  }

  /**
   * Returns activities entities with the module.
   */
  public function getModuleActivitiesEntities(OpignoModule $opigno_module) {
    $activities = [];

    /* @var $db_connection \Drupal\Core\Database\Connection */
    $db_connection = \Drupal::service('database');
    $query = $db_connection
      ->select('opigno_activity', 'oa');
    $query
      ->fields('oafd', [
      'id',
      'vid',
      'type',
      'name',
    ]);
    $query
      ->fields('omr', [
      'weight',
      'max_score',
      'auto_update_max_score',
      'omr_id',
      'omr_pid',
      'child_id',
      'child_vid',
    ]);
    $query
      ->addJoin('inner', 'opigno_activity_field_data', 'oafd', 'oa.id = oafd.id');
    $query
      ->addJoin('inner', 'opigno_module_relationship', 'omr', 'oa.id = omr.child_id');
    $query
      ->condition('oafd.status', 1);
    $query
      ->condition('omr.parent_id', $opigno_module
      ->id());
    if ($opigno_module
      ->getRevisionId()) {
      $query
        ->condition('omr.parent_vid', $opigno_module
        ->getRevisionId());
    }
    $query
      ->condition('omr_pid', NULL, 'IS');
    $query
      ->orderBy('omr.weight');
    $result = $query
      ->execute();
    foreach ($result as $activity) {
      $activities[$activity->id] = $activity;
    }
    return $activities;
  }

  /**
   * This method is called on learning path load.
   *
   * It will update an existing activity relation.
   */
  public function updateActivity(OpignoModule $opigno_module, Request $request) {

    // First, check the params.
    $datas = json_decode($request
      ->getContent());
    if (empty($datas->omr_id) || !isset($datas->max_score)) {
      return new JsonResponse(NULL, Response::HTTP_BAD_REQUEST);
    }

    /* @var $db_connection \Drupal\Core\Database\Connection */
    $db_connection = \Drupal::service('database');
    $merge_query = $db_connection
      ->merge('opigno_module_relationship')
      ->keys([
      'omr_id' => $datas->omr_id,
    ])
      ->fields([
      'max_score' => $datas->max_score,
    ])
      ->execute();
    return new JsonResponse(NULL, Response::HTTP_OK);
  }

  /**
   * This method is called on learning path load.
   *
   * It will update an existing activity relation.
   */
  public function deleteActivity(OpignoModule $opigno_module, Request $request) {

    // First, check the params.
    $datas = json_decode($request
      ->getContent());
    if (empty($datas->omr_id)) {
      return new JsonResponse(NULL, Response::HTTP_BAD_REQUEST);
    }

    /* @var $db_connection \Drupal\Core\Database\Connection */
    $db_connection = \Drupal::service('database');

    // Load Activity before deleting relationship.
    $relationship = $db_connection
      ->select('opigno_module_relationship', 'omr')
      ->fields('omr', [
      'child_id',
      'group_id',
    ])
      ->condition('omr_id', $datas->omr_id)
      ->execute()
      ->fetchObject();
    if (!empty($relationship->child_id)) {
      $opigno_activity = OpignoActivity::load($relationship->child_id);

      // Allow other modules to take actions.
      \Drupal::moduleHandler()
        ->invokeAll('opigno_learning_path_activity_delete', [
        $opigno_module,
        $opigno_activity,
      ]);

      // Delete relationship.
      $delete_query = $db_connection
        ->delete('opigno_module_relationship');
      $delete_query
        ->condition('omr_id', $datas->omr_id);
      $delete_query
        ->execute();
      if (!empty($relationship->group_id)) {
        $links = OpignoGroupManagedLink::loadByProperties([
          'group_id' => $relationship->group_id,
          'parent_content_id' => $opigno_module
            ->id(),
        ]);
        $added_activities = $opigno_module
          ->getModuleActivities();

        // Remove conditions if no activities;
        foreach ($links as $link) {
          if (empty($added_activities)) {
            $link
              ->set('required_activities', null);
            $link
              ->set('required_score', 0);
            $link
              ->save();
          }
          else {
            $activity_params = $link
              ->get('required_activities')
              ->getString();
            $activity_params = unserialize($activity_params);
            foreach ($activity_params as $param) {
              $options = explode('-', $param);
              if ($options[0] == $relationship->child_id) {
                $link
                  ->set('required_activities', null)
                  ->save();
                break;
              }
            }
          }
        }
      }
    }
    return new JsonResponse(NULL, Response::HTTP_OK);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ControllerBase::$configFactory protected property The configuration factory.
ControllerBase::$entityFormBuilder protected property The entity form builder.
ControllerBase::$entityManager protected property The entity manager.
ControllerBase::$entityTypeManager protected property The entity type manager.
ControllerBase::$formBuilder protected property The form builder. 2
ControllerBase::$keyValue protected property The key-value storage. 1
ControllerBase::$languageManager protected property The language manager. 1
ControllerBase::$moduleHandler protected property The module handler. 2
ControllerBase::$stateService protected property The state service.
ControllerBase::cache protected function Returns the requested cache bin.
ControllerBase::config protected function Retrieves a configuration object.
ControllerBase::container private function Returns the service container.
ControllerBase::currentUser protected function Returns the current user. 1
ControllerBase::entityFormBuilder protected function Retrieves the entity form builder.
ControllerBase::entityManager Deprecated protected function Retrieves the entity manager service.
ControllerBase::entityTypeManager protected function Retrieves the entity type manager.
ControllerBase::formBuilder protected function Returns the form builder service. 2
ControllerBase::keyValue protected function Returns a key/value storage collection. 1
ControllerBase::languageManager protected function Returns the language manager service. 1
ControllerBase::moduleHandler protected function Returns the module handler. 2
ControllerBase::redirect protected function Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait::redirect
ControllerBase::state protected function Returns the state storage service.
LearningPathContentController::$content_types_manager private property
LearningPathContentController::$currentUser protected property The current user service. Overrides ControllerBase::$currentUser
LearningPathContentController::countActivityInModule public function Returns module activities count.
LearningPathContentController::coursesIndex public function Root page for angular app.
LearningPathContentController::create public static function Instantiates a new instance of this class. Overrides ControllerBase::create
LearningPathContentController::deleteActivity public function This method is called on learning path load.
LearningPathContentController::getCourses public function This method is called on learning path load.
LearningPathContentController::getModuleActivities public function This method is called on learning path load.
LearningPathContentController::getModuleActivitiesEntities public function Returns activities entities with the module.
LearningPathContentController::getModuleConditionals protected function Returns conditional activities with the module.
LearningPathContentController::getModuleRequiredActivities public function Returns conditional activities with the module.
LearningPathContentController::getModuleRequiredActivitiesAccess public function Returns Right access conditional activities with the module.
LearningPathContentController::getModules public function This method is called on learning path load.
LearningPathContentController::getNextLink public function Returns next link.
LearningPathContentController::modulesIndex public function Root page for angular app.
LearningPathContentController::sortModulesArray protected function Sort.
LearningPathContentController::updateActivity public function This method is called on learning path load.
LearningPathContentController::__construct public function
LinkGeneratorTrait::$linkGenerator protected property The link generator. 1
LinkGeneratorTrait::getLinkGenerator Deprecated protected function Returns the link generator.
LinkGeneratorTrait::l Deprecated protected function Renders a link to a route given a route name and its parameters.
LinkGeneratorTrait::setLinkGenerator Deprecated public function Sets the link generator service.
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
UrlGeneratorTrait::$urlGenerator protected property The url generator.
UrlGeneratorTrait::getUrlGenerator Deprecated protected function Returns the URL generator service.
UrlGeneratorTrait::setUrlGenerator Deprecated public function Sets the URL generator service.
UrlGeneratorTrait::url Deprecated protected function Generates a URL or path for a specific route based on the given parameters.