
| Current Path : /var/www/html/rocksensor1/web/modules/contrib/visitors/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/modules/contrib/visitors/src/VisitorsLocationInterface.php |
<?php
namespace Drupal\visitors;
use Drupal\Component\Render\MarkupInterface;
/**
* Visitors Location Interface.
*/
interface VisitorsLocationInterface {
/**
* Get the country label.
*
* @param string $country_code
* The country code.
*/
public function getCountryLabel($country_code): MarkupInterface;
/**
* Get the continent code.
*
* @param string $country_code
* The country code.
*/
public function getContinent($country_code): string;
/**
* Get the continent label.
*
* @param string $continent_code
* The continent code.
*/
public function getContinentLabel($continent_code): MarkupInterface;
}