populateDefaults() public method

public populateDefaults ( )
 function populateDefaults()
 {
     parent::populateDefaults();
     $this->Title = "Update Member with points from Order.";
     $this->Note = "Records the points before, the points added and subtracted and the points after.";
     $this->InternalUseOnly = 1;
 }
 function populateDefaults()
 {
     parent::populateDefaults();
     $this->Title = "Calculate Points from Order.";
     $this->Note = "Works out the points gained and points used for an Order.";
     $this->InternalUseOnly = 1;
 }
 /**
  * standard SS method
  */
 function populateDefaults()
 {
     parent::populateDefaults();
     $this->AuthorID = Member::currentUserID();
     $this->InternalUseOnly = false;
 }
 /**
  * Set the default: the files are not ready yet!
  * Standard SS method
  */
 function populateDefaults()
 {
     parent::populateDefaults();
     $this->Note = "<p>" . _t("OrderLog.NODOWNLOADSAREAVAILABLEYET", "No downloads are available yet.") . "</p>";
 }