| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 | 
							- <?php
 
- //Déclaration d'un item de menu dans le menu principal
 
- function employee_menu(&$menuItems){
 
- 	global $myUser;
 
- 	if(!$myUser->can('employee','read')) return;
 
- 	$menuItems[] = array(
 
- 		'sort'=>3,
 
- 		'url'=>'index.php?module=employee',
 
- 		'label'=>'Fiche employé',
 
- 		'icon'=> 'fas fa-user-tie',
 
- 		'color'=> '#1abc9c'
 
- 	);
 
- }
 
- //Cette fonction va generer une page quand on clique sur Fiche employé dans menu
 
- function employee_page(){
 
- 	global $_;
 
- 	if(!isset($_['module']) || $_['module'] !='employee') return;
 
- 	$page = !isset($_['page']) ? 'list.employee' : $_['page'];
 
- 	$page = str_replace('..','',$page);
 
- 	$file = __DIR__.SLASH.'page.'.$page.'.php';
 
- 	if(!file_exists($file)) throw new Exception("Page ".$page." inexistante");
 
- 	
 
- 	require_once($file);
 
- }
 
- //Fonction executée lors de l'activation du plugin
 
- function employee_install($id){
 
- 	if($id != 'fr.core.employee') return;
 
- 	Entity::install(__DIR__);
 
- 	$dictionnary = new Dictionnary();
 
-     	$dictionnary->slug = 'employee_employee_job';
 
-     	if(Dictionnary::rowCount(array('slug'=>$dictionnary->slug)) ==0){
 
- 	    	$dictionnary->label = 'Fiche employé : Poste';
 
- 	    	$dictionnary->parent = 0;
 
- 	    	$dictionnary->state = Dictionnary::ACTIVE;
 
- 	    	$dictionnary->save();
 
- 	    	$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_job_comercial';
 
- 			$item->label = 'Commercial';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_job_devloper';
 
- 			$item->label = 'Analyste Développeur';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_job_pdg';
 
- 			$item->label = 'Président Directeur général';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_job_dg';
 
- 			$item->label = 'Directeur général';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_job_hotline';
 
- 			$item->label = 'Technicien Support';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_job_technician';
 
- 			$item->label = 'Technicien réseau système';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_job_daf';
 
- 			$item->label = 'Directeur administratif et financier';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 	    }
 
-    		$dictionnary = new Dictionnary();
 
-     	$dictionnary->slug = 'employee_employee_statute';
 
-     	if(Dictionnary::rowCount(array('slug'=>$dictionnary->slug)) ==0){
 
- 	    	$dictionnary->label = 'Fiche employé : Statut';
 
- 	    	$dictionnary->parent = 0;
 
- 	    	$dictionnary->state = Dictionnary::ACTIVE;
 
- 	    	$dictionnary->save();
 
- 	    	$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_statute_employee';
 
- 			$item->label = 'Salarié non cadre';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_statute_cadre';
 
- 			$item->label = 'Salarié Cadre';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 	    }
 
- 		$dictionnary = new Dictionnary();
 
-     	$dictionnary->slug = 'employee_employee_contractType';
 
-     	if(Dictionnary::rowCount(array('slug'=>$dictionnary->slug)) ==0){
 
- 	    	$dictionnary->label = 'Fiche employé : Type de contrat';
 
- 	    	$dictionnary->parent = 0;
 
- 	    	$dictionnary->state = Dictionnary::ACTIVE;
 
- 	    	$dictionnary->save();
 
- 	    	$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_contractType_cdd';
 
- 			$item->label = 'CDD';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_contractType_cdi';
 
- 			$item->label = 'CDI';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_contractType_apprentissage';
 
- 			$item->label = 'Contrat d\'apprentissage (alternance)';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_contractType_professionalisation';
 
- 			$item->label = 'Contrat de professionnalisation (alternance)';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			
 
- 	    }
 
-     
 
-     $dictionnary = new Dictionnary();
 
-     	$dictionnary->slug = 'employee_employee_hardware';
 
-     	if(Dictionnary::rowCount(array('slug'=>$dictionnary->slug)) ==0){
 
- 	    	$dictionnary->label = 'Fiche employé : Mise a disposition de matériel';
 
- 	    	$dictionnary->parent = 0;
 
- 	    	$dictionnary->state = Dictionnary::ACTIVE;
 
- 	    	$dictionnary->save();
 
- 	    	$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_hardware_pc';
 
- 			$item->label = 'Ordinateur portable';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_hardware_phone';
 
- 			$item->label = 'Téléphone portable';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_hardware_car';
 
- 			$item->label = 'Voiture de fonction';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 			$item = new Dictionnary();
 
- 			$item->slug = 'employee_employee_hardware_car_service';
 
- 			$item->label = 'Voiture de service';
 
- 			$item->parent = $dictionnary->id;
 
- 			$item->state = Dictionnary::ACTIVE;
 
- 			$item->save();
 
- 	    }
 
-     
 
- }
 
- //Fonction executée lors de la désactivation du plugin
 
- function employee_uninstall($id){
 
- 	if($id != 'fr.core.employee') return;
 
- 	Entity::uninstall(__DIR__);
 
- 	$dictionnary = Dictionnary::bySlug('employee_employee_job');
 
-     	if($dictionnary!= false && $dictionnary->id!=0){
 
-     		Dictionnary::delete(array('parent'=>$dictionnary->id));
 
-     		Dictionnary::delete(array('id'=>$dictionnary->id));
 
-     	}
 
-     $dictionnary = Dictionnary::bySlug('employee_employee_statute');
 
-     	if($dictionnary!= false && $dictionnary->id!=0){
 
-     		Dictionnary::delete(array('parent'=>$dictionnary->id));
 
-     		Dictionnary::delete(array('id'=>$dictionnary->id));
 
-     	}
 
-     $dictionnary = Dictionnary::bySlug('employee_employee_contractType');
 
-     	if($dictionnary!= false && $dictionnary->id!=0){
 
-     		Dictionnary::delete(array('parent'=>$dictionnary->id));
 
-     		Dictionnary::delete(array('id'=>$dictionnary->id));
 
-     	}
 
-     $dictionnary = Dictionnary::bySlug('employee_employee_hardware');
 
-     	if($dictionnary!= false && $dictionnary->id!=0){
 
-     		Dictionnary::delete(array('parent'=>$dictionnary->id));
 
-     		Dictionnary::delete(array('id'=>$dictionnary->id));
 
-     	}
 
-     
 
- }
 
- 	Right::register("employee",array('label'=>"Gestion des droits sur le plugin Fiche employé"));
 
- //cette fonction comprends toutes les actions du plugin qui ne nécessitent pas de vue html
 
- function employee_action(){
 
- 	require_once(__DIR__.SLASH.'action.php');
 
- }
 
- //Déclaration du menu de réglages
 
- function employee_menu_setting(&$settingMenu){
 
- 	global $myUser;
 
- 	
 
- 	if(!$myUser->can('employee','configure')) return;
 
- 	$settingMenu[]= array(
 
- 		'sort' =>1,
 
- 		'url' => 'setting.php?section=global.employee',
 
- 		'icon' => 'fas fa-angle-right',
 
- 		'label' => 'Fiche employé'
 
- 	);
 
- }
 
- //Déclaration des pages de réglages
 
- function employee_content_setting(){
 
- 	global $_;
 
- 	if(file_exists(__DIR__.SLASH.'setting.'.$_['section'].'.php'))
 
- 		require_once(__DIR__.SLASH.'setting.'.$_['section'].'.php');
 
- }
 
- require_once(__DIR__.SLASH.'action.php');
 
- //Déclaration des settings de base
 
- //Types possibles : voir FieldType.class.php. Un simple string définit une catégorie.
 
- Configuration::setting('employee',array(
 
-     "Général",
 
-     'employee_default_worktime' => array("label"=>"Heures hebdomadaires de travail par défaut","placeholder"=>"ex: 39","type"=>"number"),
 
-     'employee_save_recipients' => array("label"=>"Destinataires des notifications de creation de fiche","placeholder"=>"", "type"=>"user", "attributes"=>
 
-     	array(
 
-     		"data-multiple"=>true,
 
-     		"data-types"=>"user,rank"
 
-     	)
 
-     )
 
- ));
 
-   
 
- Right::register('employee',array('label'=>'Permissions sur les employés'));
 
- global $myFirm;
 
- if($myFirm->has_plugin('fr.core.export')){
 
- 	require_once(__ROOT__.PLUGIN_PATH.'export'.SLASH.'ExportModel.class.php');
 
- 	require_once(__ROOT__.PLUGIN_PATH.'export'.SLASH.'template'.SLASH.'WordExport.class.php');
 
- 	ExportModel::add('employee','employee-sheet', 'Fiche employé', function($parameters){
 
- 		global $myUser;
 
- 		
 
- 		require_once(__DIR__.SLASH.'Employee.class.php');
 
- 		require_once(__DIR__.SLASH.'EmployeeWorkTime.class.php');
 
- 		require_once(__DIR__.SLASH.'EmployeeContract.class.php');
 
- 		$employee = new Employee();
 
- 		$contract = new EmployeeContract();
 
- 		$workTime = new EmployeeWorkTime();
 
- 		if(!empty($parameters['id'])){
 
- 			$employee =  Employee::getById($parameters['id']);
 
- 			$contracts = EmployeeContract::staticQuery('SELECT main.*,'.EmployeeWorkTime::joinString('wt').' FROM {{table}} main LEFT JOIN '.EmployeeWorkTime::tableName().' wt ON main.worktime = wt.id WHERE (main.`end` IS NULL OR main.`end` = "" OR  main.`end` > ?) AND main.employee=? LIMIT 1',array(time(),$employee->id),true,1);
 
- 			
 
- 			if(isset($contracts[0])) $contract= $contracts[0];
 
- 			$workTime = $contract->join('worktime');
 
- 		}
 
- 		
 
- 		$job = Dictionnary::getById($employee->job); 
 
- 		$statute = Dictionnary::getById($contract->statute); 
 
- 		$contractType = Dictionnary::getById($contract->type); 
 
- 		
 
- 		$job = !$job ? new Dictionnary() : $job ;
 
- 		$statute = !$statute ? new Dictionnary() : $statute ;
 
- 		$contractType = !$contractType ? new Dictionnary() : $contractType ;
 
- 		$workTime = !$workTime ? new EmployeeWorkTime() : $workTime ;
 
- 		$hardwareTypes = Dictionnary::slugToArray('employee_employee_hardware',true);
 
- 		$hardwares = array();
 
- 		$employee->hardware = json_decode($employee->hardware,true);
 
- 		if(is_array($employee->hardware)){
 
- 			foreach ($employee->hardware as $value) {
 
- 				$hardwares[] = $hardwareTypes[$value]->label;
 
- 			}
 
- 		}
 
- 		$manager = $employee->manager !=0 ? Employee::getById($employee->manager) : new Employee();
 
- 		
 
- 		$employee->jobDescription = strip_tags(str_replace(array('<br>','<br/>','<p>'),PHP_EOL,html_entity_decode($employee->jobDescription)));
 
- 		$employee->comment = strip_tags(str_replace(array('<br>','<br/>','<p>'),PHP_EOL,html_entity_decode($employee->comment)));
 
- 		$data['employe'] = array('label'=>'Employé', 'type'=>'object','value' => array());
 
- 		$data['employe']['value']['nom'] = array('label' => 'Nom de l\'employé','value' => $employee->name);
 
- 		$data['employe']['value']['nom-naissance'] = array('label' => 'Nom de naissance de l\'employé','value' => $employee->birthName);
 
- 		$data['employe']['value']['prenom'] = array('label' => 'Prénom l\'employé','value' =>$employee->firstname); 
 
- 		$data['employe']['value']['poste'] = array('label' => 'Poste de l\'employé','value' =>$job->label); 
 
- 		$data['employe']['value']['role'] = array('label' => 'Rôle/Missions','value' => WordExport::convert_text_format(html_entity_decode($employee->jobDescription)) ); 
 
- 		$data['employe']['value']['status'] = array('label' => 'Status','value' =>$statute->label); 
 
- 		$data['employe']['value']['manager'] = array('label' => 'Responsable','value' =>$manager->fullName()); 
 
- 		$data['employe']['value']['lieu-travail'] = array('label' => 'Lieu de travail','value' =>$employee->workplace); 
 
- 		$data['employe']['value']['debut-contrat'] = array('label' => 'Date de début de contrat','value' =>date('d/m/Y',$contract->start)); 
 
- 		$data['employe']['value']['type-contrat'] = array('label' => 'Type de contrat','value' =>$contractType->label); 
 
- 		$data['employe']['value']['motif-cdd'] = array('label' => 'Motif contrat','value' =>$contract->comment); 
 
- 		$data['employe']['value']['fin-contrat'] = array('label' => 'Date de fin CDD','value' =>date('d/m/Y',$contract->end)); 
 
- 		$data['employe']['value']['temps-travail'] = array('label' => 'Temps de travail','value' =>$workTime->label);
 
- 		$data['employe']['value']['heures-semaine'] = array('label' => 'Heures par semaines','value' =>$workTime->hourByWeek); 
 
- 		$data['employe']['value']['jours-an'] = array('label' => 'Jours par an','value' =>$workTime->dayByYear); 
 
- 		$data['employe']['value']['materiel'] = array('label' => 'Matériel alloué','value' =>  WordExport::convert_text_format(implode(', ',$hardwares)) ); 
 
- 		$data['employe']['value']['date'] = array('label' => 'Date','value' => date('d/m/Y',$contract->start));
 
- 		
 
- 		$path = $employee->picture();
 
- 		$stream = file_exists($path) ? file_get_contents($path) : '';
 
- 		$data['employe']['value']['photo'] = array(
 
- 				'label'=>'Photo de l\'employé', 
 
- 				'type'=>'image',
 
- 				'value' => $stream
 
- 		);
 
- 		return $data;
 
- 	});
 
- }
 
- function employee_notification_type(&$types){
 
- 	global $conf;
 
- 	$types['employee'] = array(
 
- 		'category' =>'RH',
 
- 		'label' =>'Fiche employé',
 
- 		'color' =>'#dc3545',
 
- 		'icon'  =>'fas fa-user-tie',
 
- 		'description' => "Notification lorsqu'une fiche emoployé est créée",
 
- 		'default_methods' => array(
 
- 			'interface' => !empty($conf->get('employee_interface')) ? $conf->get('employee_interface') : true,
 
- 			'mail' => !empty($conf->get('employee_mail')) ? $conf->get('employee_mail') : true
 
- 		)
 
- 	);
 
- }
 
- //Déclation des assets
 
- Plugin::addCss("/css/main.css"); 
 
- Plugin::addJs("/js/main.js"); 
 
- Plugin::addCss("/css/component.css"); 
 
- Plugin::addJs("/js/component.js");
 
- //Mapping hook / fonctions
 
- Plugin::addHook("install", "employee_install");
 
- Plugin::addHook("uninstall", "employee_uninstall"); 
 
- Plugin::addHook("menu_main", "employee_menu"); 
 
- Plugin::addHook("page", "employee_page"); 
 
- Plugin::addHook("menu_setting", "employee_menu_setting");
 
- Plugin::addHook("content_setting", "employee_content_setting");
 
- Plugin::addHook("notification_type", "employee_notification_type"); 
 
- ?>
 
 
  |