ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilUserRequestTargetAdjustmentCase.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
8 {
12  protected $ctrl;
13 
17  protected $user;
18 
24  {
25  $this->user = $user;
26  $this->ctrl = $ctrl;
27  }
31  abstract public function shouldStoreRequestTarget();
32 
36  abstract public function shouldAdjustRequest();
37 
41  abstract public function isInFulfillment();
42 
46  abstract public function adjust();
47 }