Overview
Comment:Fix vérification
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 48c41532546abf49914964130d31b9d1d947c183
User & Date: bohwaz on 2015-02-18 16:53:03
Other Links: manifest | tags
Context
2015-02-18
17:58
Les RIB ne servent plus de nos jours + simplification page des comptes bancaires check-in: ac27edf028 user: bohwaz tags: trunk
16:53
Fix vérification check-in: 48c4153254 user: bohwaz tags: trunk
2015-02-17
17:49
Corrections appels javascript check-in: 82b4cee008 user: bohwaz tags: trunk
Changes

Modified src/include/lib/Garradin/Plugin.php from [0764afa302] to [a9ad3fd1ec].

265
266
267
268
269
270
271
272

273
274
275
276
277
278
279
265
266
267
268
269
270
271

272
273
274
275
276
277
278
279







-
+







	 * @param  mixed  $callback Callback, sous forme d'un nom de fonction ou de méthode statique
	 * @return boolean TRUE
	 */
	public function registerSignal($signal, $callback)
	{
		$callable_name = '';

		if (!is_callable($callback, true, $callable_name) || !is_string($callback))
		if (!is_callable($callback, true, $callable_name) || !is_string($callable_name))
		{
			throw new \LogicException('Le callback donné n\'est pas valide.');
		}

		$db = DB::getInstance();

		// Signaux exclusifs, qui ne peuvent être attribués qu'à un seul plugin