bookmarks/lib/Helper.php

20 lines
398 B
PHP
Raw Permalink Normal View History

<?php
2020-09-21 12:25:50 +00:00
/*
* Copyright (c) 2020-2024. The Nextcloud Bookmarks contributors.
2020-09-21 12:25:50 +00:00
*
* This file is licensed under the Affero General Public License version 3 or later. See the COPYING file.
*/
2019-01-27 16:26:08 +00:00
namespace OCA\Bookmarks;
class Helper {
2019-01-27 16:26:08 +00:00
public static function getDomainWithoutExt($name) {
2020-09-21 12:17:46 +00:00
$pos = strrpos($name, '.');
if ($pos === false) {
return $name;
}
2020-09-21 12:17:46 +00:00
return substr($name, 0, $pos);
}
}