35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?php
|
|
/*
|
|
*
|
|
*/
|
|
?>
|
|
<div class="box">
|
|
<div class="tabs-below">
|
|
<ul class="nav nav-tabs pull-right">
|
|
<li><?=$this->Html->link(__("dreamjob.settings"),array('controller'=>'user','action'=>'settings_account'));?></li>
|
|
<?php
|
|
if(!empty($WORKER) and count($WORKER)>0){
|
|
?>
|
|
<li><?=$this->Html->link(__("dreamjob.settings.pages"),array('controller'=>'user','action'=>'settings_pageInh'));?></li>
|
|
<li><?=$this->Html->link(__("dreamjob.settings.isearch"),array('controller'=>'user','action'=>'settings_isearch'));?></li>
|
|
<?php
|
|
}else{
|
|
?>
|
|
<li><?=$this->Html->link(__("dreamjob.settings.pages.company"),array('controller'=>'user','action'=>'settings_pageInh'));?></li>
|
|
<?php
|
|
}
|
|
?>
|
|
</ul>
|
|
</div>
|
|
<h1><?=__("dreamjob.settings.delete.title");?></h1>
|
|
<?php
|
|
echo $this->Form->create(false,$default_Form);
|
|
echo __("dreamjob.settings.delete.text");
|
|
?>
|
|
<div class="buttonrow">
|
|
<?=$this->Html->link(__('dreamjob.settings.to'),array('controller'=>'user', 'action'=>'settings_account'),array("class" => "btn btn-success"));;?>
|
|
<?=$this->Form->button(__('dreamjob.settings.delete'),array('div' => false,'class'=>"btn btn-danger ",'type' => 'submit'));?>
|
|
</div>
|
|
<?php echo $this->Form->end(); ?>
|
|
</div>
|