1- add 3 method in user model [model/users.class.php] as:
	* getInstractorWebinar method in line 588
	* getInstractorCourses method in line 614
	* getInstractorSuccesStory method in line 640
2- add 3 lines in instractorController file [controller/instractorController.php] as:
	* $instractorCourses=$this->registry->users->getInstractorCourses($instractor); in line 12
	* $instractorSuccesStory=$this->registry->users->getInstractorSuccesStory($instractor); in line 13
	* $instractorWebinar=$this->registry->users->getInstractorWebinar($instractor); in line 14
3- add 9 lines in instractor file [views/academy/instractor.php] as :
	 <?php
            if(count($courses)){
                include ('views/academy/wedget/home-courses.php');
            }
            if(count($successtories)){
                include ('views/academy/wedget/home-success-story.php');
            }
            if(count($webinars)){
                include ('views/academy/wedget/home-webinar.php');
            }
            ?>
from 37 to 47