本文整理汇总了PHP中UI::row方法的典型用法代码示例。如果您正苦于以下问题:PHP UI::row方法的具体用法?PHP UI::row怎么用?PHP UI::row使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UI
的用法示例。
在下文中一共展示了UI::row方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: UI
<?php
$ui = new UI();
$errors = validation_errors();
if ($errors != '') {
$this->notification->drawNotification('Validation Errors', validation_errors(), 'error');
}
$row = $ui->row()->open();
$column1 = $ui->col()->width(2)->open();
$column1->close();
$column2 = $ui->col()->width(8)->open();
$box = $ui->box()->solid()->uiType('primary')->open();
$form = $ui->form()->extras('enctype="multipart/form-data"')->action('information/edit_circular/edit/' . $circular_row->circular_id . '/' . $auth_id)->open();
$star_circular = $ui->row()->open();
//echo" Fields marked with <span style= 'color:red;'>*</span> are mandatory.";
$star_circular->close();
$compose_box = $ui->box()->icon($ui->icon('edit'))->title('Circular Details')->solid()->uiType('primary')->open();
$inputRow1 = $ui->row()->open();
$ui->input()->type('text')->label('Circular ID<span style= "color:red;"> *</span>')->name('circular_ids')->required()->width(6)->value($circular_row->circular_id)->disabled()->show();
$ui->input()->type('text')->label('Circular Number<span style= "color:red;"> *</span>')->name('circular_no')->value($circular_row->circular_no)->required()->width(6)->show();
$inputRow1->close();
$inputRow2 = $ui->row()->open();
$ui->textarea()->label('Circular Subject<span style= "color:red;"> *</span>')->placeholder('Enter the circular Subject in not more than 200 characters')->name('circular_sub')->value($circular_row->circular_sub)->required()->width(12)->show();
$inputRow2->close();
$inputRow3 = $ui->row()->open();
$ui->datePicker()->name('valid_upto')->label('Last Date<span style= "color:red;"> *</span> (Atleast today)')->value($circular_row->valid_upto)->dateFormat('yyyy-mm-dd')->width(6)->show();
//$inputRow3->close();
$inputRow3 = $ui->col()->width(6)->open();
$coll = $ui->col()->width(6)->open();
echo '<br/><a href="' . base_url() . 'assets/files/information/circular/' . $circular_row->circular_path . '" title="download file" download="' . $circular_row->circular_path . '">' . $circular_row->circular_path . '</a>';
$coll->close();
示例2: UI
<?php
$ui = new UI();
$upRow = $ui->row()->open();
$col = $ui->col()->open();
switch ($validation_status) {
case "approved":
$status = array("ui_type" => "success", "text" => "");
break;
case "pending":
$status = array("ui_type" => "warning", "text" => "Pending for Approval");
break;
case "rejected":
$status = array("ui_type" => "danger", "text" => "Rejected");
break;
}
$box = $ui->box()->id('show_details')->title('Last 5 Year Stay Details ' . $ui->label()->uiType($status['ui_type'])->text($status['text']))->uiType($status['ui_type'])->open();
$details = count($pending_emp_last5yrstay_details) ? $pending_emp_last5yrstay_details : $emp_last5yrstay_details;
if (count($details)) {
$table = $ui->table()->id('tbl5')->responsive()->bordered()->striped()->open();
echo '<thead><tr align="center">
<td rowspan=2 style="vertical-align:middle" ><b>S no.</b></td>
<td colspan=2 style="vertical-align:middle" ><b>Duration</b></td>
<td rowspan=2 style="vertical-align:middle" ><b>Residential Address</b></td>
<td rowspan=2 style="vertical-align:middle" ><b>Name of District Headquarters</b></td>
<td rowspan=2 style="vertical-align:middle" ><b>Edit/Delete</b></td>
</tr>
<tr align="center">
<td style="vertical-align:middle" ><b>From</b></td>
<td style="vertical-align:middle" ><b>To</b></td>
</tr></thead><tbody>';
$i = 1;
示例3: UI
<?php
$ui = new UI();
$outer_row = $ui->row()->open();
$column1 = $ui->col()->width(1)->open();
$column1->close();
$column2 = $ui->col()->width(10)->open();
$innercol4 = $ui->col()->id('add_grp_col')->width(12)->open();
$row1 = $ui->col()->width(12)->open();
$array_options = array();
$array_options[0] = $ui->option()->value('""')->text("Select Group")->disabled()->selected();
$filter = array();
foreach ($group_notice as $filter_result) {
array_push($filter, $filter_result->group_id);
}
$filter = array_unique($filter);
foreach ($filter as $grp) {
array_push($array_options, $ui->option()->value($grp)->text($grp));
}
$ui->select()->label('Group Name<span style= "color:red;"> *</span>')->required()->name('groups_name_id')->id("groups_name_id")->containerId("cont_groups_name_id")->options($array_options)->show();
$row1->close();
$innercol4->close();
$column2 = $ui->col()->width(12)->open();
?>
<br/>
<div id="move_details_of_sent_files" name='move_details_of_sent_files'>
</div>
<br/>
示例4: UI
<?php
if ($correspondence_address) {
$coress_recv = true;
} else {
$coress_recv = false;
}
$ui = new UI();
$form = $ui->form()->action('student/student_edit/update_basic_details/' . $stu_id . '/' . $coress_recv)->multipart()->id('form_submit')->open();
$student_admn_no = $ui->row()->open();
$column1 = $ui->col()->width(10)->open();
echo '<label>Admission No. : </label>';
echo $stu_id;
$column1->close();
$student_admn_no->close();
?>
<div id="stu_details_hidden"><?php
$student_details_row = $ui->row()->open();
$student_details_box = $ui->box()->uiType('primary')->solid()->title('Personal Details')->open();
$student_name = $ui->row()->open();
/* $salutation_column = $ui->col()
->width(3)
->open();
*/
$ui->select()->name('salutation')->width(3)->options(array($ui->option()->value('mr')->text('Mr')->selected($user_details->salutation == "mr"), $ui->option()->value('mrs')->text('Mrs')->selected($user_details->salutation == "mrs"), $ui->option()->value('ms')->text('Ms')->selected($user_details->salutation == "ms"), $ui->option()->value('dr')->text('Dr')->selected($user_details->salutation == "dr")))->show();
/*$salutation_column->close();
$firstname_column = $ui->col()
->width(3)
->open();
*/
示例5: elseif
$tbgroup = "O-";
} elseif ($tbgroup == 'abpos') {
$tbgroup = "AB+";
} elseif ($tbgroup == 'abneg') {
$tbgroup = "AB-";
}
//--------------middle name-----
$mname = $user_details->middle_name;
if ($mname == "Na") {
$mname = "";
} else {
$mname = $user_details->middle_name;
}
//-------------------------------
$ui = new UI();
$stuRowpdetails = $ui->row()->open();
$col1 = $ui->col()->width(12)->open();
$box = $ui->box()->title('Personal Details')->solid()->uiType('primary')->open();
$stuRow2 = $ui->row()->open();
$col1 = $ui->col()->width(3)->open();
echo "<label>Name</label>";
$col1->close();
$col2 = $ui->col()->width(3)->open();
echo ucwords(trim($user_details->first_name)) . ' ' . ucwords($mname) . ' ' . ucwords(trim($user_details->last_name));
$col2->close();
$col3 = $ui->col()->width(3)->open();
echo "<label>Name in Hindi</label>";
$col3->close();
$col4 = $ui->col()->width(3)->open();
echo $student_details->name_in_hindi;
$col4->close();
示例6: UI
<?php
$ui = new UI();
$errors = validation_errors();
if ($errors != '') {
$this->notification->drawNotification('Validation Errors', validation_errors(), 'error');
}
$row = $ui->row()->open();
$column1 = $ui->col()->width(2)->open();
$column1->close();
$column2 = $ui->col()->width(9)->open();
$box = $ui->box()->title('Notice Details')->solid()->uiType('primary')->open();
$form = $ui->form()->extras('enctype="multipart/form-data"')->action('information/edit_notice/edit/' . $notice_row->notice_id)->open();
$star_notice = $ui->row()->open();
//echo" Fields marked with <span style= 'color:red;'>*</span> are mandatory.";
$star_notice->close();
$inputRow1 = $ui->row()->open();
$ui->input()->type('text')->label('Notice ID<span style= "color:red;"> *</span>')->name('notice_ids')->required()->width(6)->value($notice_row->notice_id)->disabled()->show();
$ui->input()->type('text')->label('Notice Number<span style= "color:red;"> *</span>')->name('notice_no')->value($notice_row->notice_no)->required()->width(6)->show();
$inputRow1->close();
$inputRow2 = $ui->row()->open();
if ($notice_row->notice_cat == 'emp') {
$ui->select()->label('Viewed By<span style= "color:red;"> *</span>')->name('notice_cat')->options(array($ui->option()->value('emp')->text('Employee')->selected(), $ui->option()->value('stu')->text('Student'), $ui->option()->value('all')->text('All')))->width(6)->show();
} else {
if ($notice_row->notice_cat == 'stu') {
$ui->select()->label('Viewed By<span style= "color:red;"> *</span>')->name('notice_cat')->options(array($ui->option()->value('emp')->text('Employee'), $ui->option()->value('stu')->text('Student')->selected(), $ui->option()->value('all')->text('All')))->width(6)->show();
} else {
$ui->select()->label('Viewed By<span style= "color:red;"> *</span>')->name('notice_cat')->options(array($ui->option()->value('emp')->text('Employee'), $ui->option()->value('stu')->text('Student'), $ui->option()->value('all')->text('All')->selected()))->width(6)->show();
}
}
$ui->datePicker()->name('last_date')->label('Last Date<span style= "color:red;"> *</span> (Atleast today)')->dateFormat('yyyy-mm-dd')->value($notice_row->last_date)->width(6)->show();
示例7: UI
<?php
$ui = new UI();
$outer_row = $ui->row()->id('or')->open();
$column1 = $ui->col()->width(12)->t_width(6)->m_width(12)->open();
$formbox = $ui->box()->id('box_form')->open();
$form = $ui->form()->id("form_file_upload")->action("course_structure/upload_syllabus/upload")->multipart()->open();
$array_options = array();
$array_options[0] = $ui->option()->value("")->text("Select Department")->disabled();
foreach ($result_dept as $row) {
array_push($array_options, $ui->option()->value($row->id)->text($row->name));
}
$ui->select()->label('Select Department')->name('dept')->id("dept_selection")->required()->options($array_options)->show();
$ui->select()->label('Select Course')->name('course')->id("course_selection")->required()->containerId('cont_course_selection')->show();
$ui->select()->label('Select Branch')->name('branch')->id("branch_selection")->required()->containerId('cont_branch_selection')->show();
$ui->select()->label('Valid From')->name('session')->id("session_selection")->required()->containerId('cont_session_selection')->show();
$ui->input()->label("Upload Syllabus")->type("file")->id("file_upload")->name("file_upload")->containerId("cont_file_upload")->show();
$ui->button()->value('Upload Syllabus')->uiType('primary')->submit()->name('submit')->show();
$form->close();
$formbox->close();
$column1->close();
$outer_row->close();
?>
示例8: site_url
<?php
$ui = new UI();
$form = $ui->form()->action('student/student_editable_by_student/update_my_details')->multipart()->id('form_submit')->open();
$studenteditable_details = $ui->row()->open();
$student_editable_details_box = $ui->box()->uiType('primary')->solid()->title('Editable Details')->open();
$editable_details_row_1 = $ui->row()->open();
$ui->input()->label('Email')->name('email')->type('email')->required()->value($user_detail->email)->required()->width(3)->show();
$ui->input()->label('Alternate Email')->name('alternate_email_id')->id('alternate_email_id')->type('email')->value($stu_detail->alternate_email_id)->width(3)->show();
$ui->input()->label('Mobile No.')->name('mobile')->id('mobile')->required()->value($user_other_detail->mobile_no)->required()->width(3)->show();
$ui->input()->label('Alternate Mobile No.')->name('alternate_mobile')->id('alternate_mobile')->value($stu_detail->alternate_mobile_no)->width(3)->show();
$editable_details_row_1->close();
$editable_details_row_2 = $ui->row()->open();
$ui->input()->label('Hobbies')->name('hobbies')->width(3)->id('hobbies')->value($user_other_detail->hobbies)->show();
$ui->input()->label('Favourite Pass Time')->name('favpast')->id('favpast')->value($user_other_detail->fav_past_time)->width(3)->show();
$ui->input()->label('Extra-Curricular Activities ( if any):')->name('extra_activity')->id('extra_activity')->value($stu_other_detail->extra_curricular_activity)->width(3)->show();
$ui->input()->label('Any other relevant information')->name('any_other_information')->id('any_other_information')->value($stu_other_detail->other_relevant_info)->width(3)->show();
$editable_details_row_2->close();
$editable_details_row_3 = $ui->row()->open();
$editable_col_3_1 = $ui->col()->width(5)->open();
$editable_col_3_1->close();
$ui->button()->submit(true)->value('Update')->uiType('primary')->width(2)->show();
$editable_details_row_3->close();
$editable_details_row_4 = $ui->row()->open();
$editable_col_4_1 = $ui->col()->width(11)->open();
$editable_col_4_1->close();
?>
<a href= <?php
echo site_url();
?>
示例9: UI
<?php
/*
* Author :- Nishant Raj
*/
$ui = new UI();
if ($notification == true) {
$ui->alert()->uiType($type)->desc($string)->show();
}
$row = $ui->row()->open();
$alertRow = $ui->row()->open();
$marginCol = $ui->col()->width(3)->open();
$marginCol->close();
$alertRow->close();
$margin = $ui->col()->width(2)->open();
$margin->close();
$column = $ui->col()->width(8)->open();
$box = $ui->box()->title('Station Leave Details')->solid()->uiType('primary')->open();
$form = $ui->form()->action('leave/leave_station/applyStationLeave')->open();
$inputRow1 = $ui->row()->open();
$ui->datePicker()->required()->label('Proposed Date Of Leaving Station ')->name('leave_st_date')->id('leave_st_date')->placeholder("Enter the date")->dateFormat('dd-mm-yyyy')->value("")->width(6)->show();
$ui->datePicker()->required()->id('return_st_date')->label('Proposed Date Of Reurning Station')->name('return_st_date')->placeholder(" Select Returning Date")->dateFormat('dd-mm-yyyy')->width(6)->value("")->show();
$inputRow1->close();
$inputRow2 = $ui->row()->id('st_time')->open();
$ui->timePicker()->label('Leaving Time')->name('st_leaving_time')->addonLeft($ui->icon("clock-o"))->uiType('primary')->id('st_leaving_time')->showMeridian('false')->required()->showSeconds('true')->width(6)->show();
$ui->timePicker()->label('Arrival Time')->name('st_arrival_time')->addonLeft($ui->icon("clock-o"))->uiType('primary')->id('st_arrival_time')->showMeridian('false')->required()->showSeconds('true')->width(6)->show();
$inputRow2->close();
$inputRow3 = $ui->row()->open();
$ui->textarea()->required()->placeholder('Purpose Of Leaving station')->type('text')->value("")->label('Purpose Of Leaving station')->name('purpose')->width(6)->show();
$ui->textarea()->required()->placeholder(' Address During Absence From Station')->type('text')->value("")->label('Address During Absence From Station')->id('st_address')->name('address')->width(6)->show();
$inputRow3->close();
示例10: UI
<?php
if ($correspondence_address) {
$coress_recv = true;
} else {
$coress_recv = false;
}
$ui = new UI();
$form = $ui->form()->action('student/student_edit/update_all_details/' . $stu_id . '/' . $coress_recv)->multipart()->id('form_submit')->open();
$student_details_row = $ui->row()->open();
$student_details_box = $ui->box()->uiType('primary')->solid()->title('Personal Details')->open();
$student_name = $ui->row()->open();
/* $salutation_column = $ui->col()
->width(3)
->open();
*/
$ui->select()->name('salutation')->width(3)->options(array($ui->option()->value('mr')->text('Mr')->selected($user_details->salutation == "mr"), $ui->option()->value('mrs')->text('Mrs')->selected($user_details->salutation == "mrs"), $ui->option()->value('ms')->text('Ms')->selected($user_details->salutation == "ms"), $ui->option()->value('dr')->text('Dr')->selected($user_details->salutation == "dr")))->show();
/*$salutation_column->close();
$firstname_column = $ui->col()
->width(3)
->open();
*/
$ui->input()->placeholder('First Name')->id('firstname')->required()->value($user_details->first_name)->width(3)->name('firstname')->show();
/* $firstname_column->close();
$middlename_column = $ui->col()
->width(3)
->open();
*/
示例11: UI
<?php
$ui = new UI();
$outer_row = $ui->row()->open();
$column1 = $ui->col()->width()->open();
$column1->close();
$column2 = $ui->col()->width(12)->open();
$new_payment = $payment;
$data_row = $ui->row()->id('data_row')->open();
$data_row->close();
$column2->close();
$column2 = $ui->col()->width(12)->open();
$tabBox1 = $ui->box()->icon($ui->icon("file-o"))->title("Your Consultancy Form")->solid()->uiType('primary')->open();
$new_payment = $payment;
//$tab1 = $ui->tabPane()->id("current")->active()->open();
$table = $ui->table()->hover()->bordered()->sortable()->searchable()->paginated()->open();
?>
<thead>
<tr>
<th> Title</th>
<th>Posted On/ Edited On</th>
<th>Revision Status</th>
<th >link</th>
<th >Request file</th>
</tr>
</thead>
<?php
foreach ($cons_row as $key => $cons_row) {
?>
示例12: array
$pay_options = array($ui->option()->value("")->text("Choose One")->disabled());
if ($pay_bands === FALSE) {
array_push($pay_options, $ui->option()->value("")->text("No pay band found")->disabled());
} else {
foreach ($pay_bands as $row) {
array_push($pay_options, $ui->option()->value($row->pay_band)->text(strtoupper($row->pay_band) . ' (' . $row->pay_band_description . ')')->selected($row->pay_band == $emp_pay_details->pay_band));
}
}
//gradepay options
$grade_options = array();
$gradepay = $this->pay_scales_model->get_grade_pay($emp_pay_details->pay_band);
foreach ($gradepay as $row) {
array_push($grade_options, $ui->option()->value($row->pay_code)->text($row->grade_pay)->selected($row->grade_pay == $emp_pay_details->grade_pay));
}
$form = $ui->form()->id('basic_details')->action('employee/edit/update_own_basic_details/' . $emp_id)->open();
$row = $ui->row()->open();
$col = $ui->col()->width(12)->open();
$basic_box = $ui->box()->uiType('primary')->solid()->title('Personal Details')->open();
echo 'Fields marked with <span style= "color:red;">*</span> are mandatory.<br><br> ';
$row3 = $ui->row()->open();
$ui->select()->width(2)->name('salutation')->label('Salutation<span style= "color:red;"> *</span>')->options(array($ui->option()->value('Dr')->text('Dr')->selected($user_details->salutation == 'Dr'), $ui->option()->value('Prof')->text('Prof')->selected($user_details->salutation == 'Prof'), $ui->option()->value('Mr')->text('Mr')->selected($user_details->salutation == 'Mr'), $ui->option()->value('Mrs')->text('Mrs')->selected($user_details->salutation == 'Mrs'), $ui->option()->value('Ms')->text('Ms')->selected($user_details->salutation == 'Ms')))->show();
$ui->input()->width(3)->name('firstname')->required()->disabled()->placeholder("First Name")->value($user_details->first_name)->label('First Name<span style= "color:red;"> *</span>')->show();
$ui->input()->width(3)->name('middlename')->disabled()->label('Middle Name')->value($user_details->middle_name)->placeholder("Middle Name")->show();
$ui->input()->width(3)->name('lastname')->disabled()->value($user_details->last_name)->placeholder("Last Name")->label('Last Name')->show();
$row3->close();
$row4 = $ui->row()->open();
$ui->select()->width(3)->name('mstatus')->label('Marital Status<span style= "color:red;"> *</span>')->options(array($ui->option()->value('married')->text('Married')->selected($user_details->marital_status == 'married'), $ui->option()->value('unmarried')->text('Unmarried')->selected($user_details->marital_status == 'unmarried'), $ui->option()->value('widow')->text('Widow')->selected($user_details->marital_status == 'widow'), $ui->option()->value('widower')->text('Widower')->selected($user_details->marital_status == 'widower'), $ui->option()->value('separated')->text('Separated')->selected($user_details->marital_status == 'separated'), $ui->option()->value('divorced')->text('Divorced')->selected($user_details->marital_status == 'divorced')))->show();
$ui->datePicker()->label('DOB<span style= "color:red;"> *</span>')->id('dob')->disabled()->name('dob')->required()->dateFormat('dd-mm-yyyy')->width(3)->addonRight($ui->icon("calendar"))->value(date("d-m-Y", strtotime($user_details->dob)))->extras('max="' . date("d-m-Y") . '"')->show();
$ui->input()->width(3)->name('pob')->required()->disabled()->value($user_other_details->birth_place)->label('Place of Birth<span style= "color:red;"> *</span>')->show();
$row4->close();
$row2 = $ui->row()->open();
示例13: UI
}
});
</script>
<?php
$ui = new UI();
$errors = validation_errors();
if ($errors != '') {
$this->notification->drawNotification('Validation Errors', validation_errors(), 'error');
}
foreach ($details as $detail) {
$row1 = $ui->row()->open();
}
$row1->close();
$row = $ui->row()->open();
$column1 = $ui->col()->width(1)->open();
$column1->close();
$column2 = $ui->col()->width(10)->open();
$box = $ui->box()->title('<u>Title</u> - ' . $cons_row->consultancy_title)->uiType('primary')->open();
$column1 = $ui->col()->width(6)->open();
$column1->close();
$column2 = $ui->col()->width(6)->open();
$ui->input()->type('text')->label('Linkup No')->name('link')->value($result->link_up_no)->disabled()->width(6)->show();
$ui->input()->type('text')->label('Page No')->name('page')->value($result->page_no)->width(6)->disabled()->show();
if ($payment_no->payment_no) {
$ui->input()->type('text')->label('CONS/')->name('cons')->value($id->consultancy_no)->disabled()->width(10)->show();
}
示例14: UI
<?php
$ui = new UI();
$headingBox = $ui->box()->uiType('info')->title('Edit the Details of Post')->solid()->open();
$form = $ui->form()->multipart()->action('guard/manage_post/edit')->open();
$postidRow = $ui->row()->id('postidRow')->open();
$guardlabel = $ui->col()->width(4)->t_width(8)->m_width(12)->open();
echo 'Post ID';
$guardlabel->close();
$guardinput = $ui->col()->width(8)->t_width(4)->m_width(12)->open();
$ui->input()->value($details_of_a_postname['post_id'])->disabled()->show();
$guardinput->close();
$postidRow->close();
$postRow = $ui->row()->id('postRow')->open();
$postlabel = $ui->col()->width(4)->t_width(8)->m_width(12)->open();
echo 'Post Name';
$postlabel->close();
$postinput = $ui->col()->width(8)->t_width(4)->m_width(12)->open();
$ui->input()->id('postname')->name('postname')->required()->placeholder('Enter Post Name')->value($details_of_a_postname['postname'])->show();
$postinput->close();
$postRow->close();
$ipRow = $ui->row()->id('ipRow')->open();
$guardlabel = $ui->col()->width(4)->t_width(8)->m_width(12)->open();
echo 'IP Address of Post';
$guardlabel->close();
$guardinput = $ui->col()->width(8)->t_width(4)->m_width(12)->open();
$ui->input()->id('ipaddress')->name('ipaddress')->placeholder('Enter IP Address')->value($details_of_a_postname['ipaddress'])->show();
$guardinput->close();
$ipRow->close();
$shiftRow = $ui->row()->id('shiftRowA')->open();
$shiftlabel = $ui->col()->width(4)->t_width(8)->m_width(12)->open();
示例15: UI
<?php
$ui = new UI();
$head = $ui->row()->open();
$h_col = $ui->col()->width(12)->open();
$box = $ui->box()->title('Validation Requests')->uiType('primary')->open();
if (!$emp_validation_details) {
$this->callout()->title("No Pending Requests")->desc("There are no pending requests.")->show();
} else {
$table = $ui->table()->bordered()->condensed()->responsive()->open();
echo "<thead><tr align='center'>\n\t\t\t\t\t<td rowspan='2' style='vertical-align:middle' ><b>Employee Id</b></td>\n\t\t\t\t\t<td rowspan='2' style='vertical-align:middle' ><b>Employee Name</b></td>\n\t\t\t\t\t<td colspan='6' style='vertical-align:middle' ><b>Status</b></td>\n\t\t\t\t</tr>\n\t\t\t\t<tr align='center'>\n\t\t\t\t\t<td style='vertical-align:middle'><b>Profile Pic</b></td>\n\t\t\t\t\t<td style='vertical-align:middle'><b>Basic Details</b></td>\n\t\t\t\t\t<td style='vertical-align:middle'><b>Previous Employment Details</b></td>\n\t\t\t\t\t<td style='vertical-align:middle'><b>Dependent Family Member Details</b></td>\n\t\t\t\t\t<td style='vertical-align:middle'><b>Educational Qualifications</b></td>\n\t\t\t\t\t<td style='vertical-align:middle'><b>Last 5 Year Stay Details</b></td>\n\t\t\t\t</tr></thead><tbody>";
$i = 0;
foreach ($emp_validation_details as $v_row) {
$i++;
$user = $this->user_details_model->getUserById($v_row->id);
$emp_name = ucwords($user->salutation . '. ' . $user->first_name . ($user->middle_name != '' ? ' ' . $user->middle_name : '') . ($user->last_name != '' ? ' ' . $user->last_name : ''));
echo "<tr>\n\t\t\t\t\t<td align=\"center\" >" . $v_row->id . "</td>\n\t\t\t\t\t<td align=\"center\">" . $emp_name . "</td>";
//profile picture step
$label = $ui->label()->text(ucwords($v_row->profile_pic_status));
if ($v_row->profile_pic_status == 'pending') {
echo "<td align=\"center\" >";
if ($this->authorization->is_auth('est_ar')) {
echo "<a href='" . site_url("employee/validation/validate_step/" . $v_row->id . "/0") . "'>";
}
$label->uiType('info')->show();
if ($this->authorization->is_auth('est_ar')) {
echo '</a>';
}
echo '</td>';
} else {
if ($v_row->profile_pic_status == 'rejected') {