Hello, i have a class like:
class List_PendingVerify extends Rs_List {
public function __construct( $id ) {
}
protected function loadData( ) {
}
}
Now i how could i get value of $id in loadData function ?
so that i can be able to echo $id.
Thanks.