aboutsummaryrefslogtreecommitdiffstats
path: root/demos/slider/index.html
blob: 1bc1198c41d35f135728b0cd5f6faa89ee163bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>jQuery UI Slider Demos</title>
</head>
<body>

<ul>
	<li><a href="default.html">Default functionality</a></li>
	<li><a href="steps.html">Snap to increments</a></li>
	<li><a href="range.html">Range slider</a></li>
	<li><a href="rangemin.html">Range with fixed minimum</a></li>
	<li><a href="hotelrooms.html">Room reservation</a></li>
	<li><a href="rangemax.html">Range with fixed maximum</a></li>
	<li><a href="slider-vertical.html">Vertical slider</a></li>
	<li><a href="range-vertical.html">Vertical range slider</a></li>
	<li><a href="multiple-vertical.html">Multiple sliders</a></li>
	<li><a href="colorpicker.html">Simple colorpicker</a></li>
</ul>

</body>
</html>
stable26'>backport/42172/stable26 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Share_Backend_Collection.php
blob: 8dbe07db851ceba07cabd649585f522dd8d4ef56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

/**
 * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
 * SPDX-License-Identifier: AGPL-3.0-only
 */
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal Nextcloud classes

namespace OCP;

/**
 * Interface for collections of items implemented by another share backend.
 * Extends the Share_Backend interface.
 * @since 5.0.0
 */
interface Share_Backend_Collection extends Share_Backend {
	/**
	 * Get the sources of the children of the item
	 * @param string $itemSource
	 * @return array Returns an array of children each inside an array with the keys: source, target, and file_path if applicable
	 * @since 5.0.0
	 */
	public function getChildren($itemSource);
}