Example #1
0
 /**
  * Initialize Goals per level
  */
 static function init()
 {
     /** Personal Retail Sales */
     self::$PRSGoal = array('white' => 125, 'yellow' => 1000, 'pink' => 250, 'blue' => 250, 'green' => 500, 'orange' => 500, 'purple' => 500, 'black' => 500);
     /** Company Wholesale Sales Goal */
     self::$CoWSGoal = array('pink' => 2000, 'blue' => 4000, 'green' => 10000, 'orange' => 20000, 'purple' => 40000, 'black' => 80000);
     /** Qualified First-Level Presenters Goal */
     self::$QFLGoal = array('pink' => 1, 'blue' => 2, 'green' => 3, 'orange' => 3, 'purple' => 4, 'black' => 4);
     /** Circle Wholesale Sales Goal */
     self::$CiWSGoal = array('green' => 2000, 'orange' => 4000, 'purple' => 6000, 'black' => 10000);
     /** Commission engine Key for prs progress by level */
     self::$PRSKey = array('white' => 'active_prs', 'yellow' => 'lifetime_prs', 'pink' => 'prs', 'blue' => 'prs', 'green' => 'prs', 'orange' => 'prs', 'purple' => 'prs', 'black' => 'prs');
 }