Skip to content

Commit

Permalink
User and Aauth System Variables.
Browse files Browse the repository at this point in the history
set_user_var( $key, $value, $user_id = false )
get_user_var( $key, $user_id = false)
set_aauth_var( $key, $value, $user_id = false )
get_aauth_var( $key, $user_id = false)

functions added
  • Loading branch information
Emre Akay committed Jun 28, 2014
1 parent b34a57a commit 982cb87
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion application/libraries/Aauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,31 @@ public function print_infos($divider = '<br />'){
return $msg;
}

}
########################
# User Variables
########################

public function set_user_var( $key, $value, $user_id = false ) {

}

public function get_user_var( $key, $user_id = false){

}

########################
# Aauth System Variables
########################

public function set_aauth_var( $key, $value ) {

}

public function get_aauth_var( $key ){

}

} // end class


/**
Expand Down

0 comments on commit 982cb87

Please sign in to comment.