userManager = $userManager; $this->accountManager = $accountManager; parent::__construct(); } protected function configure() { $this ->setName('user:sync-account-data') ->setDescription('sync user backend data to accounts table for configured users') ->addOption( 'limit', 'l', InputOption::VALUE_OPTIONAL, 'Number of users to retrieve', '500' )->addOption( 'offset', 'o', InputOption::VALUE_OPTIONAL, 'Offset for retrieving users', '0' ); } protected function execute(InputInterface $input, OutputInterface $output): int { $users = $this->userManager->searchDisplayName('', (int) $input->getOption('limit'), (int) $input->getOption('offset')); foreach ($users as $user) { $this->updateUserAccount($user, $output); } return 0; } private function updateUserAccount(IUser $user, OutputInterface $output): void { $changed = false; $account = $this->accountManager->getAccount($user); if ($user->getBackend() instanceof IGetDisplayNameBackend) { try { $displayNameProperty = $account->getProperty(IAccountManager::PROPERTY_DISPLAYNAME); } catch (PropertyDoesNotExistException) { $displayNameProperty = null; } if (!$displayNameProperty || $displayNameProperty->getValue() !== $user->getDisplayName()) { $output->writeln($user->getUID() . ' - updating changed display name'); $account->setProperty( IAccountManager::PROPERTY_DISPLAYNAME, $user->getDisplayName(), $displayNameProperty ? $displayNameProperty->getScope() : IAccountManager::SCOPE_PRIVATE, $displayNameProperty ? $displayNameProperty->getVerified() : IAccountManager::NOT_VERIFIED, $displayNameProperty ? $displayNameProperty->getVerificationData() : '' ); $changed = true; } } if ($changed) { $this->accountManager->updateAccount($account); $output->writeln($user->getUID() . ' - account data updated'); } else { $output->writeln($user->getUID() . ' - nothing to update'); } } } ithub_actions/github-actions-6951dec90a'>summaryrefslogtreecommitdiffstats
path: root/tests/visual/effects.all.js
blob: 0479c47ac7c59487c18e6633934336284c6aa3cc (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
$(function() {

	$("div.effect")
		.hover(function() { $(this).addClass("hover"); },
			function() { $(this).removeClass("hover"); });

	var effect = function(el, n, o) {

		$.extend(o, {
			easing: "easeOutQuint"
		});

		$(el).bind("click", function() {

			$(this).addClass("current").hide(n, o, 1000, function() {
				var self = this;
				window.setTimeout(function() {
					$(self).show(n, o, 1000, function() { $(this).removeClass("current"); });
				},500);
			});
		});

	};

	effect("#blindHorizontally", "blind", { direction: "horizontal" });
	effect("#blindVertically", "blind", { direction: "vertical" });

	effect("#bounce3times", "bounce", { times: 3 });

	effect("#clipHorizontally", "clip", { direction: "horizontal" });
	effect("#clipVertically", "clip", { direction: "vertical" });

	effect("#dropDown", "drop", { direction: "down" });
	effect("#dropUp", "drop", { direction: "up" });
	effect("#dropLeft", "drop", { direction: "left" });
	effect("#dropRight", "drop", { direction: "right" });

	effect("#explode9", "explode", {});
	effect("#explode36", "explode", { pieces: 36 });

	effect("#fold", "fold", { size: 50 });

	effect("#highlight", "highlight", {});

	effect("#pulsate", "pulsate", { times: 2 });

	effect("#puff", "puff", { times: 2 });
	effect("#scale", "scale", {});

	$("#shake").bind("click", function() { $(this).addClass("current").effect("shake", {}, 100, function() { $(this).removeClass("current"); }); });

	effect("#slideDown", "slide", { direction: "down" });
	effect("#slideUp", "slide", { direction: "up" });
	effect("#slideLeft", "slide", { direction: "left" });
	effect("#slideRight", "slide", { direction: "right" });

	$("#transfer").bind("click", function() { $(this).addClass("current").effect("transfer", { to: "div:eq(0)" }, 1000, function() { $(this).removeClass("current"); }); });

	$("#addClass").click(function() {
		$(this).addClass(function() {
			window.console && console.log(arguments);
			return "current";
		}, 1000, function() {
			$(this).removeClass("current");
		});
	});
	$("#removeClass").click(function() {
		$(this).addClass("current").removeClass(function() {
			window.console && console.log(arguments);
			return "current"
		}, 1000);
	});
	$("#toggleClass").click(function() {
		$(this).toggleClass(function() {
			window.console && console.log(arguments);
			return "current"
		}, 1000);
	});
});