Content-Security-Policy: default-src 'none' Content-Type: text/plain; charset=UTF-8 Content-Length: 2050 Content-Disposition: inline; filename="example.php" Last-Modified: Sat, 16 Aug 2025 05:37:55 GMT Expires: Tue, 14 Aug 2035 05:37:55 GMT ETag: "db21d6f9e52e489d4fbcc73e83dca8f721c2b94b" . * */ /** * abstract reference class for user management * this class should only be used as a reference for method signatures and their descriptions */ abstract class OC_User_Example extends OC_User_Backend { /** * Create a new user * @param string $uid The username of the user to create * @param string $password The password of the new user * @return bool * * Creates a new user. Basic checking of username is done in OC_User * itself, not in its subclasses. */ abstract public function createUser($uid, $password); /** * Set password * @param string $uid The username * @param string $password The new password * @return bool * * Change the password of a user */ abstract public function setPassword($uid, $password); /** * Check if the password is correct * @param string $uid The username * @param string $password The password * @return string * * Check if the password is correct without logging in the user * returns the user id or false */ abstract public function checkPassword($uid, $password); /** * get the user's home directory * @param string $uid The username * @return string * * get the user's home directory * returns the path or false */ abstract public function getHome($uid); } ctions/github-actions-ced721f930 The official jQuery user interface library: https://github.com/jquery/jquery-uiwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/demos/datepicker/animation.html
blob: 0c43b7011ba24f1fa8cafc8d568a43b63375ff50 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>jQuery UI Datepicker - Animations</title>
	<link rel="stylesheet" href="../../themes/base/all.css">
	<link rel="stylesheet" href="../demos.css">
	<script src="../../external/requirejs/require.js"></script>
	<script src="../bootstrap.js" data-modules="effect effect-bounce effect-blind effect-bounce effect-clip effect-drop effect-fold effect-slide">
		$( "#datepicker" ).datepicker();
		$( "#anim" ).on( "change", function() {
			$( "#datepicker" ).datepicker( "option", "showAnim", $( this ).val() );
		});
	</script>
</head>
<body>

<p>Date: <input type="text" id="datepicker" size="30"/></p>

<p>Animations:<br />
	<select id="anim">
		<option value="show">Show (default)</option>
		<option value="slideDown">Slide down</option>
		<option value="fadeIn">Fade in</option>
		<option value="blind">Blind (UI Effect)</option>
		<option value="bounce">Bounce (UI Effect)</option>
		<option value="clip">Clip (UI Effect)</option>
		<option value="drop">Drop (UI Effect)</option>
		<option value="fold">Fold (UI Effect)</option>
		<option value="slide">Slide (UI Effect)</option>
		<option value="">None</option>
	</select>
</p>

<div class="demo-description">
<p>Use different animations when opening or closing the datepicker.  Choose an animation from the dropdown, then click on the input to see its effect.  You can use one of the three standard animations or any of the UI Effects.</p>
</div>
</body>
</html>