2014-03-15 13:56:26 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
$avatar = false;
|
|
|
|
if($profil['AppUser']['take_systemwide']){
|
|
|
|
if($profil['User']['avatar'])
|
|
|
|
$avatar = true;
|
|
|
|
}else{
|
|
|
|
if($profil['AppUser']['avatar'])
|
|
|
|
$avatar = true;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<div class="box">
|
2014-03-18 09:34:04 +01:00
|
|
|
|
2014-03-15 13:56:26 +01:00
|
|
|
<div class="tabs-below">
|
|
|
|
<ul class="nav nav-tabs pull-right">
|
2014-03-18 09:34:04 +01:00
|
|
|
<li class="active"><?=$this->Html->link(__("dreamjob.settings"),array('controller'=>'user','action'=>'settings_account'));?></li>
|
|
|
|
<li><?=$this->Html->link(__("dreamjob.settings.pages"),array('controller'=>'user','action'=>'settings_pages'));?></li>
|
|
|
|
<?php
|
|
|
|
if(!empty($WORKER) and count($WORKER)>0){
|
|
|
|
?>
|
|
|
|
<li><?=$this->Html->link(__("dreamjob.settings.isearch"),array('controller'=>'user','action'=>'settings_isearch'));?></li>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2014-03-15 13:56:26 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
2014-03-18 09:34:04 +01:00
|
|
|
<h1><?=__("dreamjob.settings");?></h1>
|
2014-03-15 13:56:26 +01:00
|
|
|
<?php
|
|
|
|
echo $this->Form->create('DreamjobJobApplication',$default_Form);
|
|
|
|
?>
|
|
|
|
<fieldset>
|
|
|
|
<legend><?=__("dreamjob.account");?></legend>
|
|
|
|
<?php
|
2014-03-18 09:34:04 +01:00
|
|
|
echo $this->Form->input('User.mail',array('label'=>array('text'=>__("dreamjob.mail"),"class"=>$default_Form['inputDefaults']['label']['class']),'disabled'));
|
|
|
|
|
|
|
|
echo $this->Form->input('User.password',array('label'=>array('text'=>__("dreamjob.password"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
echo $this->Form->input('User.password2',array('label'=>array('text'=>__("dreamjob.password2"),"class"=>$default_Form['inputDefaults']['label']['class']),'type'=>'password'));
|
|
|
|
|
|
|
|
if($WORKER){
|
|
|
|
?>
|
|
|
|
<legend><?=__("dreamjob.worker");?></legend>
|
|
|
|
<?php
|
|
|
|
echo $this->Form->input('AppUser.bday',array('label'=>array('text'=>__("dreamjob.bday"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
echo $this->Form->input('DreamjobWorker.iam',array('label'=>array('text'=>__("dreamjob.iam"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
echo $this->Form->input('DreamjobWorker.graducation_id',array('label'=>array('text'=>__("dreamjob.graducation"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<legend><?=__("dreamjob.addresse");?></legend>
|
|
|
|
<?php
|
|
|
|
echo $this->Form->input('DreamjobUser.street',array('label'=>array('text'=>__("dreamjob.street"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
echo $this->Form->input('DreamjobUser.city',array('label'=>array('text'=>__("dreamjob.city"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
echo $this->Form->input('DreamjobUser.postcode',array('label'=>array('text'=>__("dreamjob.postcode"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
|
|
|
if($WORKER)
|
|
|
|
echo $this->Form->input('DreamjobWorker.country',array('label'=>array('text'=>__("dreamjob.country"),"class"=>$default_Form['inputDefaults']['label']['class'])));
|
2014-03-15 13:56:26 +01:00
|
|
|
?>
|
|
|
|
<div class="buttonrow">
|
2014-03-18 09:34:04 +01:00
|
|
|
<?=$this->Form->button(__('dreamjob.settings.save'),array('div' => false,'class'=>"btn btn-default ",'type' => 'submit'));?>
|
2014-03-15 13:56:26 +01:00
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<?php echo $this->Form->end(); ?>
|
|
|
|
</div>
|