示例#1
0
        ?>
"  disabled="disabled" >
                        </div>
                      </div>
                      
                      
                    </div>
                    <div class="col-md-7">
                      <h4>Promosi Yang Diajukan</h4>
                      <div class="row form-row">
                        <div class="col-md-4">
                          <label class="form-label text-left">Unit Bisnis Baru</label>
                        </div>
                        <div class="col-md-8">
                          <input name="nik" id="form3LastName" type="text"  class="form-control " placeholder="Nama" value="<?php 
        echo get_bu_name(substr($row->new_bu, 0, 2));
        ?>
" disabled="disabled">
                        </div>
                      </div>

                      <div class="row form-row">
                        <div class="col-md-4">
                          <label class="form-label text-left">Dept/Bagian Baru</label>
                        </div>
                        <div class="col-md-8">
                          <input name="nik" id="form3LastName" type="text"  class="form-control " placeholder="Nama" value="<?php 
        echo get_organization_name($row->new_org);
        ?>
" disabled="disabled">
                        </div>
示例#2
0
                                    <td valign="middle"><?php 
    echo $user->username;
    ?>
</td>
                                    <!-- <td valign="middle"><span class="muted"><?php 
    echo $user->last_name;
    ?>
</span></td> -->
                                    <td valign="middle"><span class="muted"><?php 
    echo $user->email;
    ?>
</span></td>
                                    <td valign="middle"><span class="muted">
                                        <?php 
    foreach ($user->groups as $group) {
        $bu = !empty($group->bu) ? ' - [' . get_bu_name($group->bu) . ']' : '';
        ?>
                                            <?php 
        echo anchor("auth/edit_group/" . $group->id, $group->name . $bu);
        ?>
<br />
                                        <?php 
    }
    ?>
                                    </span></td>
                                    <td valign="middle">
                                        <span class="muted">
                                            <?php 
    echo $user->active ? anchor("auth/deactivate/" . $user->id, lang('index_active_link')) : anchor("auth/activate/" . $user->id, lang('index_inactive_link'));
    ?>
                                        </span>
示例#3
0
                                        </div>
                                    </td>
                                    <td valign="middle"><?php 
    echo $user->name;
    ?>
</td>
                                    <td valign="middle"><?php 
    echo $user->description;
    ?>
</td>
                                    <!-- <td valign="middle"><span class="muted"><?php 
    echo $user->last_name;
    ?>
</span></td> -->
                                    <td valign="middle"><span class="muted"><?php 
    echo get_bu_name($user->bu);
    ?>
</span></td>
                                    <td valign="middle"><span class="muted"><?php 
    echo $user->admin_type;
    ?>
</span></td>
                                    <td valign="middle">
                                        <a href="<?php 
    echo site_url('auth/edit_group/' . $user->id);
    ?>
"><button type="button" class="btn btn-info btn-small"   title="<?php 
    echo lang('edit_button');
    ?>
"><i class="icon-edit"></i></button></a>
                                        <button class='btn btn-danger btn-small' type="button" value="Delete" data-toggle="modal" data-target="#deleteGroupModal<?php 
示例#4
0
            <div class="grid-body no-border">
              <?php 
$att = array('class' => 'form-no-horizontal-spacing', 'id' => 'formaddrecruitment');
echo form_open('form_recruitment/add', $att);
if ($_num_rows > 0) {
    foreach ($recruitment as $row) {
        ?>
                <div class="row column-seperation">
                  <div class="col-md-12">    
                    <div class="row form-row">
                      <div class="col-md-2">
                        <label class="form-label text-right">Unit Bisnis</label>
                      </div>
                      <div class="col-md-4">
                        <input name="jumlah" id="form3LastName" type="text"  class="form-control" placeholder="-" value="<?php 
        echo get_bu_name(substr($row->bu_id, 0, 2));
        ?>
" disabled="disabled">
                      </div>
                      <div class="col-md-2">
                        <label class="form-label text-right">Departement</label>
                      </div>
                      <div class="col-md-4">
                        <input name="jumlah" id="form3LastName" type="text"  class="form-control" placeholder="-" value="<?php 
        echo get_organization_name($row->parent_organization_id);
        ?>
" disabled="disabled">
                      </div>
                    </div>
                    <div class="row form-row">
                      <div class="col-md-2">
示例#5
0
                                                        <input type="checkbox" id="checkbox<?php 
        echo $group['id'];
        ?>
" name="groups[]" value="<?php 
        echo $group['id'];
        ?>
"<?php 
        echo $checked;
        ?>
>
                                                        <label for="checkbox<?php 
        echo $group['id'];
        ?>
">
                                                            <?php 
        $bu = !empty($group['bu']) ? ' - [' . get_bu_name($group['bu']) . ']' : '';
        echo $group['name'] . $bu;
        ?>
                                                        </label>
                                                    </div>
                                                <?php 
    }
    ?>
                                                <input type="checkbox" id="checkboxuser" name="groups[]" value="2" checked="checked" style="display:none">
                                            </div>
                                        </div>
                                    <?php 
}
?>

                                    <?php