[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/api/components/com_content/src/Helper/ -> ContentHelper.php (source)

   1  <?php
   2  
   3  /**
   4   * @package     Joomla.Api
   5   * @subpackage  com_content
   6   *
   7   * @copyright   (C) 2020 Open Source Matters, Inc. <https://www.joomla.org>
   8   * @license     GNU General Public License version 2 or later; see LICENSE.txt
   9   */
  10  
  11  namespace Joomla\Component\Content\Api\Helper;
  12  
  13  use Joomla\CMS\Uri\Uri;
  14  
  15  // phpcs:disable PSR1.Files.SideEffects
  16  \defined('_JEXEC') or die;
  17  // phpcs:enable PSR1.Files.SideEffects
  18  
  19  /**
  20   * Content api helper.
  21   *
  22   * @since  4.0.0
  23   */
  24  class ContentHelper
  25  {
  26      /**
  27       * Fully Qualified Domain name for the image url
  28       *
  29       * @param   string  $uri      The uri to resolve
  30       *
  31       * @return  string
  32       */
  33      public static function resolve(string $uri): string
  34      {
  35          // Check if external URL.
  36          if (stripos($uri, 'http') !== 0) {
  37              return Uri::root() . $uri;
  38          }
  39  
  40          return $uri;
  41      }
  42  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer