Files
nextcloud-bookmarks/lib/Helper.php
Marcel Klehr 43b10f4d54 fix: update codesniffer and run cs:fix
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
2024-12-01 13:21:43 +01:00

21 lines
399 B
PHP

<?php
/*
* Copyright (c) 2020-2024. The Nextcloud Bookmarks contributors.
*
* This file is licensed under the Affero General Public License version 3 or later. See the COPYING file.
*/
namespace OCA\Bookmarks;
class Helper {
public static function getDomainWithoutExt($name) {
$pos = strrpos($name, '.');
if ($pos === false) {
return $name;
}
return substr($name, 0, $pos);
}
}