/**
 * Smarty date2word modifier plugin
 *
 * Input:<br>
 *         - string: input time difference as timestamp
 * @param string
 * @uses smarty_modifier_lang()
 */
function smarty_modifier_date2word($dif, $short = false)
{
    if ($dif) {
        $s = "";
        $years = intval($dif / (60 * 60 * 24 * 365));
        $dif = $dif - $years * (60 * 60 * 24 * 365);
        if ($years) {
            $s .= $years . "&nbsp;" . smarty_modifier_lang("_YEAR" . ($years > 1 ? "S" : "")) . "&nbsp;";
        }
        if ($years && $short) {
            return $s;
        }
        $months = intval($dif / (60 * 60 * 24 * 30));
        $dif = $dif - $months * (60 * 60 * 24 * 30);
        if ($months) {
            $s .= $months . "&nbsp;" . smarty_modifier_lang("_MONTH" . ($months > 1 ? "S" : "")) . "&nbsp;";
        }
        if ($months && $short) {
            return $s;
        }
        $weeks = intval($dif / (60 * 60 * 24 * 7));
        $dif = $dif - $weeks * (60 * 60 * 24 * 7);
        if ($weeks) {
            $s .= $weeks . "&nbsp;" . smarty_modifier_lang("_WEEK" . ($weeks > 1 ? "S" : "")) . "&nbsp;";
        }
        if ($weeks && $short) {
            return $s;
        }
        $days = intval($dif / (60 * 60 * 24));
        $dif = $dif - $days * (60 * 60 * 24);
        if ($days) {
            $s .= $days . "&nbsp;" . smarty_modifier_lang("_DAY" . ($days > 1 ? "S" : "")) . "&nbsp;";
        }
        if ($days && $short) {
            return $s;
        }
        $hours = intval($dif / (60 * 60));
        $dif = $dif - $hours * (60 * 60);
        if ($hours) {
            $s .= $hours . "&nbsp;" . smarty_modifier_lang("_HOUR" . ($hours > 1 ? "S" : "")) . "&nbsp;";
        }
        if ($hours && $short) {
            return $s;
        }
        $minutes = intval($dif / 60);
        $seconds = $dif - $minutes * 60;
        if ($minutes) {
            $s .= $minutes . "&nbsp;" . smarty_modifier_lang("_MIN" . ($minutes > 1 ? "S" : ""));
        }
        if ($minutes && $short) {
            return $s;
        }
        if ($short) {
            return $seconds . "&nbsp;" . smarty_modifier_lang("_SEC" . ($seconds > 1 ? "S" : ""));
        }
        return $s;
    } else {
        return;
    }
}
        echo $this->_tpl_vars['logs']['ip'];
        ?>
</td>
            <td height='16' class='listtable_1'><?php 
        echo $this->_tpl_vars['logs']['action'];
        ?>
</td>
            <td height='16' class='listtable_1'><?php 
        echo $this->_tpl_vars['logs']['remarks'];
        ?>
</td>
          </tr>
          <?php 
    }
} else {
    ?>
          <tr  class="listtable_1-<?php 
    echo smarty_function_cycle(array('values' => "w,g"), $this);
    ?>
tr">
            <td height='16' colspan='6' class='listtable_1' align='center'><br><?php 
    echo is_array($_tmp = '_NOLOGFOUND') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
<br><br></td>
          </tr>
          <?php 
}
unset($_from);
?>
 				</table>
 				
</td>
						<td height='16' width='10%' class='listtable_1' align='right' colspan='2'><input type='hidden' name='submitted' value='true'><input type='submit' name='prune' value='<?php 
echo is_array($_tmp = '_PRUNEDB') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
' style='font-family: verdana, tahoma, arial; font-size: 10px;' <?php 
if ($this->_tpl_vars['bans2prune'] == 0) {
    ?>
disabled<?php 
}
?>
></td>
          </tr>
          </form>
          <tr class="listtable_1-<?php 
echo smarty_function_cycle(array('values' => "w,g"), $this);
?>
tr">
          	<td height='16' width='100%' class='listtable_1' colspan='4'><br>

							<b><?php 
echo is_array($_tmp = '_WHATISPRUNING') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</b><br>
							<?php 
echo is_array($_tmp = '_PRUNINGINFO') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>

							<br><br>
          	</td>
          </tr>
        </table>
        if (!is_array($_from) && !is_object($_from)) {
            settype($_from, 'array');
        }
        if (count($_from)) {
            foreach ($_from as $this->_tpl_vars['serverList']) {
                ?>
        <li><?php 
                echo $this->_tpl_vars['serverList']['full_name'];
                ?>
</li>
        <?php 
            }
        } else {
            ?>
        <li><font color="#666666"><?php 
            echo is_array($_tmp = 'NOT_SERVER_LIST') ? $this->_run_mod_handler('lang', true, $_tmp, 'Common') : smarty_modifier_lang($_tmp, 'Common');
            ?>
</font></li>
        <?php 
        }
        unset($_from);
        ?>
        </ul>
    </td>
  </tr>
  <?php 
    }
} else {
    ?>
  <tr>
    <th colspan="8"><?php 
    }
}
unset($_from);
?>
											</td>
										</tr>
										<?php 
if ($this->_supers['session']['loggedin'] != true) {
    ?>
										<tr> 
											<td class="vtop fat"><?php 
    echo is_array($_tmp = '_SCODE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</td> 
											<td><?php 
    echo is_array($_tmp = '_SCODEENTER') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
<br>
												<img src="include/captcha.php" alt="Security code" style="border: 1px #000000 solid;"><br>
												<input type='text' size="30" name='verify' id="verify_code">
											</td> 
										</tr>
										<?php 
}
?>
									</tbody> 
								</table> 
							</form>
						</div>
					</form>
				</table>
    ?>
"><img src="images/page_next.png" title="<?php 
    echo is_array($_tmp = '_NEXT_PAGE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
" alt="<?php 
    echo is_array($_tmp = '_NEXT_PAGE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
"></a>
        <?php 
}
?>
        <?php 
if ($this->_tpl_vars['pagenav']['last']) {
    ?>
            <a href="?site=<?php 
    echo $this->_tpl_vars['pagenav']['last'];
    ?>
"><img src="images/page_end.png" title="<?php 
    echo is_array($_tmp = '_LAST_PAGE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
" alt="<?php 
    echo is_array($_tmp = '_LAST_PAGE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
"></a>
        <?php 
}
?>
    </div>
    <div class="clearer"></div>
<!-- Pagenation -->  
</div>
							</tr>
		<?php 
    }
    unset($_from);
    ?>
						</tbody> 
					</table> 
				<div class="clearer">&nbsp;</div>
	</div>
		<?php 
    if ($this->_tpl_vars['vars']['comment_all'] == '1' || $this->_supers['session']['loggedin'] == 'true') {
        ?>
			<div class="post _center">
				<form method="post" action="">
					<input type="button" class="button" name="newcomment" value="<?php 
        echo is_array($_tmp = '_NEWCOMMENT') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
        ?>
" onclick="$('#add_comment').slideToggle('slow');"/><br/><br/>
				</form>
			</div>
			<div id="add_comment" class="post" style="display:none;">
				<tr id="comadd_<?php 
        echo $this->_tpl_vars['ban_detail']['bid'];
        ?>
" <?php 
        if ($this->_tpl_vars['comment_layer'] != '1') {
            ?>
style="display: none"<?php 
        }
        ?>
>
							<td colspan="3"><b><?php 
    echo is_array($_tmp = '_BANDETAILSEDITS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</b></td>
						</tr>
						<tr class="settings_line">
							<td width="1%"><b><?php 
    echo is_array($_tmp = '_DATE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</b></td>
							<td width="1%"><b><?php 
    echo is_array($_tmp = '_ADMIN') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</b></td>
							<td><b><?php 
    echo is_array($_tmp = '_EDITREASON') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</b></td>
						</tr>
						<?php 
    $_from = $this->_tpl_vars['ban_details_edits'];
    if (!is_array($_from) && !is_object($_from)) {
        settype($_from, 'array');
    }
    if (count($_from)) {
        foreach ($_from as $this->_tpl_vars['ban_details_edits']) {
            ?>
						<tr class="settings_line">
							<td nowrap><?php 
            echo is_array($_tmp = $this->_tpl_vars['ban_details_edits']['edit_time']) ? $this->_run_mod_handler('date_format', true, $_tmp, "%d. %b %Y - %T") : smarty_modifier_date_format($_tmp, "%d. %b %Y - %T");
            ?>
    <td>
    	[<a href="<?php 
        echo $this->_tpl_vars['list']['url_edit'];
        ?>
"><?php 
        echo is_array($_tmp = '95B351C86267F3AEDF89520959BCE689') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
        ?>
</a>]
        [<a onclick="return confirm('<?php 
        echo is_array($_tmp = '187D1FE0248DC951304185D455EC5437') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
        ?>
?')" href="<?php 
        echo $this->_tpl_vars['list']['url_del'];
        ?>
"><?php 
        echo is_array($_tmp = '2F4AADDDE33C9B93C36FD2503F3D122B') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
        ?>
</a>]
    </td>
  </tr>
  <?php 
    }
} else {
    ?>
  <tr><th colspan="11"><?php 
    echo $this->_tpl_vars['noData'];
    ?>
</th></tr>
  <?php 
}
unset($_from);
</a></li>
			</ul>
		</div>
		<div id="menu_4" style="display: none;">
			<ul class="tabbed">
				<li><a href="admin.php?site=so_mo"><?php 
echo is_array($_tmp = '_MODULES') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</a></li>
				<li><a href="admin.php?site=so_up"><?php 
echo is_array($_tmp = '_MENUUPDATE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</a></li>
				<li><a href="admin.php?site=so_lg"><?php 
echo is_array($_tmp = '_MENULOGS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</a></li>
			</ul>
		</div>
		<div id="menu_5" style="display: none;">
			<ul class="tabbed">
				<li><a href="admin.php?modul=iexport"><?php 
echo is_array($_tmp = '_MENUIMPORTEXPORT') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</a></li>
			</ul>
		</div>
		<div class="clearer">&nbsp;</div>
	</div>
</div>
-->
?>
</b></font> ';
							if(n.is_quality!=0){
								tmpStr+='<a qa_id="'+n.Id+'" href="javascript:void(0)" onclick="showQuality($(this))"><?php 
echo is_array($_tmp = '6FB49C8C71853B074DFF6030CE588C4C') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</a>&nbsp;';
							}else{
								tmpStr+='<font color="#999999">[<?php 
echo is_array($_tmp = '10C4744BCF74D883D9303E4111A17466') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
]</font>&nbsp;';
							}
							
							tmpStr+=n.word_reply_name+'&nbsp;'+n.create_time+'&nbsp;<font style="font-weight:bold"><?php 
echo is_array($_tmp = '1EDFF073D48E05B9E79BB7516DA23A6E') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
:</font><br />'+n.content+'</div>';

						}
					});
					curTd.parent().after("<tr style='background:#FFF' id='"+curTd.attr("dialogId")+"'><td colspan='8'>"+tmpStr+"</td></tr>");
				}
			}
		);
	});
	
	$(".order_title").click(function(){
		var id=$(this).attr("dialogId");
		$("#"+id).toggle();
	})
?>
" value="<?php 
echo is_array($_tmp = '1EF84829E0071AC9EF3C9CB6ECA6DC58') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
" /-->
        	<input type="button" class="btn-blue" onclick="formSubmit($(this))" url="<?php 
echo $this->_tpl_vars['url']['accept'];
?>
" value="<?php 
echo is_array($_tmp = 'CF13B1A67881F454AF469AA874F087E5') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
" />
            <input type="button" class="btn-blue" onclick="formSubmit($(this))" url="<?php 
echo $this->_tpl_vars['url']['reject'];
?>
" value="<?php 
echo is_array($_tmp = '7173F80900EA2FF9FEC6568115611305') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
" />
        </td>
      </tr>
      </form>
      <tr>
        <td colspan="9" align="right"><?php 
echo $this->_tpl_vars['pageBox'];
?>
</td>
      </tr>
    </table>
    
</fieldset>
    echo is_array($_tmp = 'A59C190B19758E577ADCAA244ED53706') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</th>
            <td> - <input type="text" class="text" name="asset" value="" /> <span id="assetInfo" style="color:#F00"></span></td>
          </tr>
          <tr>
            <th scope="row"><?php 
    echo is_array($_tmp = '22962E31B7F0C2B3BB7C4E7444C904B3') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</th>
            <td> - <input type="text" class="text" name="gold" value="" /> <span id="goldInfo" style="color:#F00"></span></td>
          </tr>
          <tr>
            <th scope="row"><?php 
    echo is_array($_tmp = 'C5E03794DA38DEC31D05CB002BF700BE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</th>
            <td> - <input type="text" class="text" name="goldTicket" value="" /> <span id="goldTicketInfo" style="color:#F00"></span></td>
          </tr>
          <tr>
            <th scope="row">&nbsp;</th>
            <td><input type="submit" class="btn-blue" name="sbm" value="<?php 
    echo is_array($_tmp = '327094A9DDDF9E37726CAFACEB9A77B0') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
" /></td>
          </tr>
        </table>
    </form>
</fieldset>
<?php 
}
    ?>
</th>
        <th scope="col"><?php 
    echo is_array($_tmp = '443A93F96B78C1CD21E01C7D7B522E8C') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</th>
        <th scope="col"><?php 
    echo is_array($_tmp = 'D865CD29E0FA9CF494F0CE3188C9F352') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</th>
        <th scope="col"><?php 
    echo is_array($_tmp = 'DA8ECE14F90D4772F089640AB0C4583D') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</th>
        <th scope="col"><?php 
    echo is_array($_tmp = '9FC2DF4C098C78C61164DA65C38957DC') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</th>
      </tr>
      <?php 
    $_from = $this->_tpl_vars['dataList'];
    if (!is_array($_from) && !is_object($_from)) {
        settype($_from, 'array');
    }
    if (count($_from)) {
        foreach ($_from as $this->_tpl_vars['list']) {
            ?>
      <tr>
        <td><?php 
            echo $this->_tpl_vars['list']['data_0'];
            ?>
}
?>
>[Game]Server_Infos (http://gsi.probal.fr/index_en.php)</option>
		

		</select>

		</td>
	</tr>

	<tr class="listtable_1-<?php 
echo smarty_function_cycle(array('values' => "w,g"), $this);
?>
tr">
		<td height='16' class='listtable_1' colspan='2' align='right'><input type='submit' name='dir' value='<?php 
echo is_array($_tmp = '_CHECKDIRS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
' style='font-family: verdana, tahoma, arial; font-size: 10px'> <input type='submit' name='db' value='<?php 
echo is_array($_tmp = '_CHECKCONNECT') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
' style='font-family: verdana, tahoma, arial; font-size: 10px'> <input type='submit' name='action' value='<?php 
echo is_array($_tmp = '_APPLY') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
' style='font-family: verdana, tahoma, arial; font-size: 10px' onclick="javascript:return confirm('<?php 
echo is_array($_tmp = '_SURETOSAVE') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
')"></td>
	</tr>
	</form>
</table>
' style='font-family: verdana, tahoma, arial; font-size: 10px;' <?php 
                if ($this->_tpl_vars['players']['is_admin'] == 1 || $this->_tpl_vars['players']['steamid'] == 'BOT') {
                    ?>
disabled<?php 
                }
                ?>
></td>
					</tr>
					</form>
          <?php 
            }
        } else {
            ?>
          <tr bgcolor='#D3D8DC'>
            <td height='16' colspan='7' class='listtable_1' align='center'><br><?php 
            echo is_array($_tmp = '_NOPLAYERORWRONGRCON') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
            ?>
<br><br></td>
          </tr>
          <?php 
        }
        unset($_from);
        ?>
          
        </table>
				<?php 
    }
    ?>
				<?php 
}
?>
        ?>

                    <?php 
    } else {
        ?>
                        <?php 
        echo is_array($_tmp = 'SERVER_TIME') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
        ?>

                    <?php 
    }
    ?>
                )
            </th>
            <th><?php 
    echo is_array($_tmp = '2F27863E8013382CC2530C21D82A24B1') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</th>
            
          </tr>
          <?php 
    $_from = $this->_tpl_vars['dataLiat'];
    if (!is_array($_from) && !is_object($_from)) {
        settype($_from, 'array');
    }
    if (count($_from)) {
        foreach ($_from as $this->_tpl_vars['vo']) {
            ?>
          <tr>
            <td><?php 
            echo $this->_tpl_vars['vo']['cmdId'];
            ?>
            <?php 
            echo is_array($_tmp = '48E07E7DEAE53593B6FB5F4315CF0D1F') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
            ?>

            <?php 
        } else {
            ?>
            <font color="#FF0000"><?php 
            echo is_array($_tmp = 'F98214970C09E9F6FB18AD06420B8402') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
            ?>
"<?php 
            echo is_array($_tmp = 'BEE912D79EEFB7335988C4997AA9138D') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
            ?>
"<?php 
            echo is_array($_tmp = 'FA966345577BA81AF19408F203DB968F') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
            ?>
</font>
            <?php 
        }
        ?>
        </th>
      </tr>
    <?php 
    }
    unset($_from);
    ?>
    </table>
</form>
<table width="100%" border="0" cellpadding="3">
  <tr>
            <?php 
        echo smarty_function_html_radios(array('options' => $this->_tpl_vars['playerTypes'], 'name' => 'userType', 'selected' => is_array($_tmp = @$this->_tpl_vars['userTypeSelect']) ? $this->_run_mod_handler('default', true, $_tmp, 3) : smarty_modifier_default($_tmp, 3)), $this);
        ?>

            </div>
        	<textarea name="users" id="users" style="width:400px; height:100px;"><?php 
        echo $this->_tpl_vars['users'];
        ?>
</textarea>
        	<div id="usersTip"></div>
        </td>
      </tr>
      <?php 
    }
    ?>
      <tr>
        <th colspan="2" scope="row"><input type="submit" class="btn-blue" name="sbm" value="<?php 
    echo is_array($_tmp = '1176C5B5B255C95320D0FA9AFA835824') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
" /></th>
      </tr>
    </table>
    </form>
    </fieldset>
<?php 
}
?>



        echo $this->_tpl_vars['list']['answer_num'];
        ?>
</td>
        <td><a href="<?php 
        echo $this->_tpl_vars['list']['url_reply_detail'];
        ?>
" ><?php 
        echo $this->_tpl_vars['list']['word_owner_user_id'];
        ?>
</a></td>
        <td>
            <a href="<?php 
        echo $this->_tpl_vars['list']['url_detail'];
        ?>
"><?php 
        echo is_array($_tmp = '8627BFD5E5462A1BE765DE05F0FB0D5E') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
        ?>
</a>
        </td>
      </tr>
      <?php 
    }
} else {
    ?>
      <tr><th colspan="10"><?php 
    echo $this->_tpl_vars['noData'];
    ?>
</th></tr>
      <?php 
}
unset($_from);
  		<input type="checkbox" onclick="$(':checkbox[name=\'card[]\']').attr('checked',$(this).attr('checked'))" /><?php 
    echo is_array($_tmp = '66EEACD93A7C1BDA93906FE908AD11A0') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
 
        <input type="submit" class="btn-blue" value="<?php 
    echo is_array($_tmp = '0CD91F4718E3195F74E12E3B396801E9') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
" name="csv" />
        <input class="btn-blue" type="submit" onclick="return confirm('确定删除?');" value="<?php 
    echo is_array($_tmp = '2F4AADDDE33C9B93C36FD2503F3D122B') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
" /> <b><font color="#FF0000"><?php 
    echo is_array($_tmp = 'F6349C441652F0E053DCDE768D5C3DB8') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
: <?php 
    echo is_array($_tmp = 'BC48069A68DC8314E697A6983660A371') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</font></b>
    </td>
  </tr>
  </form>
  <tr>
    <td align="right" colspan="11" scope="col">
  		<?php 
    echo $this->_tpl_vars['pageBox'];
    ?>
 	
    </td>
  </tr>
</table>
					
					<li>
						<div class="left"><?php 
echo is_array($_tmp = '_EXPIRES') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</div>
						<div class="right"><?php 
if ($this->_tpl_vars['last_ban']['length'] == 0) {
    echo is_array($_tmp = '_NEVER') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
} else {
    if ($this->_tpl_vars['last_ban']['time'] > $this->_tpl_vars['last_ban']['length']) {
        echo is_array($_tmp = '_ALREADYEXP') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    } else {
        echo is_array($_tmp = $this->_tpl_vars['last_ban']['length']) ? $this->_run_mod_handler('date_format', true, $_tmp, "%Y-%m-%d %H:%M") : smarty_modifier_date_format($_tmp, "%Y-%m-%d %H:%M");
    }
}
?>
</div>
						<div class="clearer">&nbsp;</div>
					</li>

					<li><a href="ban_list.php" class="more"><?php 
echo is_array($_tmp = '_BROWSE_ALL') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
 &#187;</a></li>
				</ul>
			</div>
		</div>
	</div>
	<div class="clearer">&nbsp;</div>
</div>
    ?>
 /></td>
						</form>
					</tr>
				</table>
			<?php 
} else {
    ?>
				<center><div class="admin_msg"><?php 
    echo is_array($_tmp = '_NOACCESS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</div></center>
			<?php 
}
?>
			<?php 
if ($this->_tpl_vars['msg'] != "") {
    ?>
			<br>
			<div class="admin_msg"><?php 
    echo is_array($_tmp = $this->_tpl_vars['msg']) ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</div>
			<br>
			<?php 
}
?>
			</td></tr></table>
		</td>
	</tr>
</table>
admin<?php 
            } elseif (isset($this->_tpl_vars['server'])) {
                ?>
server<?php 
            }
            ?>
.</td>
          </tr>
<?php 
        }
        unset($_from);
        ?>

</table>
<table cellspacing='0' border='0' width='100%'>
	<tr>
		<td height='16' align='left'><b><font color='green' size='2'><?php 
        echo is_array($_tmp = '_TOTALEXPBANS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
        ?>
 (<?php 
        echo $this->_tpl_vars['exbans']['ex_bancount'];
        ?>
)</font></b></td>
        </tr>
</table>
<?php 
    }
    ?>

<?php 
}
    echo $this->_tpl_vars['selectedServername'];
} else {
    echo is_array($_tmp = 'WITHOUT_SERVER_SELECT') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
}
?>
</span> (<?php 
echo $this->_tpl_vars['current_time_zone'];
?>
)</span>
	<?php 
if ($this->_tpl_vars['selectedServerUrl']) {
    echo $this->_tpl_vars['selectedServerUrl'];
}
?>
</fieldset>

<?php 
if ($this->_tpl_vars['errorConn']) {
    ?>
<div style="color:#000; border:1px dashed #333; padding:3px; margin:3px; color:#000; font-weight:bold; text-align:center; background:#FFECEC;"><?php 
    echo is_array($_tmp = 'CONNECT') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
[<font color="#FF0000"><?php 
    echo $this->_tpl_vars['selectedServername'];
    ?>
</font>]<?php 
    echo is_array($_tmp = 'SERVER_FAIL') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</div>
<?php 
}
require_once SMARTY_CORE_DIR . 'core.load_plugins.php';
smarty_core_load_plugins(array('plugins' => array(array('modifier', 'lang', 'ActionGame_MasterTools/OnLine/SanFen.html', 7, false))), $this);
if ($this->_tpl_vars['tplServerSelect']) {
    $_smarty_tpl_vars = $this->_tpl_vars;
    $this->_smarty_include(array('smarty_include_tpl_file' => $this->_tpl_vars['tplServerSelect'], 'smarty_include_vars' => array()));
    $this->_tpl_vars = $_smarty_tpl_vars;
    unset($_smarty_tpl_vars);
}
?>

<?php 
if ($this->_tpl_vars['display']) {
    ?>
<fieldset>
<legend><?php 
    echo is_array($_tmp = 'DC77F8A9FE92D3310E0595B28EA437DC') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
    ?>
</legend>
	<table width="100%" border="0" cellspacing="0" cellpadding="3">
      <tr>
        <th colspan="7" scope="col"><?php 
    echo $this->_tpl_vars['onlineUserNum'];
    ?>
</th>
      </tr>
      <tr>
        <th scope="col">在线用户(人)</th>
      </tr>
      <tr>
        <td><?php 
    echo $this->_tpl_vars['data'];
				<tr> 
					<th><?php 
echo is_array($_tmp = '_ACCESSPERMS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</th> 
					<th style="width:350px;"><?php 
echo is_array($_tmp = '_ACCESSFLAGS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>
</th>
				</tr> 
			</thead> 
			<tbody> 
				<tr> 
					<td>
						<?php 
echo is_array($_tmp = '_ACCESS_FLAGS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>

					</td> 
					<td class="vtop">
						<?php 
echo is_array($_tmp = '_FLAG_FLAGS') ? $this->_run_mod_handler('lang', true, $_tmp) : smarty_modifier_lang($_tmp);
?>

					</td> 
				</tr>
			</tbody> 
		</table> 
	</div>
	<div class="clearer">&nbsp;</div>
</div>
    function content_567d222fdf7168_83553211($_smarty_tpl)
    {
        if (!is_callable('smarty_modifier_lang')) {
            require_once 'D:\\projects\\ci_sample\\application\\third_party\\smarty\\libraries\\plugins\\modifier.lang.php';
        }
        $_smarty_tpl->properties['nocache_hash'] = '18331567d222fd31788_31446678';
        echo $_smarty_tpl->getSubTemplate("common/header.tpl", $_smarty_tpl->cache_id, $_smarty_tpl->compile_id, 0, $_smarty_tpl->cache_lifetime, array(), 0);
        ?>


	<link rel="stylesheet" type="text/css" href="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
css/slicebox.css" />
	<link rel="stylesheet" type="text/css" href="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
css/slicebox-slider.css" />
	<link rel="stylesheet" type="text/css" href="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
css/slicebox-custom.css" />
	<div id="slider" class="container">
		<div class="wrapper">
			<ul id="sb-slider" class="sb-slider">
				<li><a href="/jp/service/research"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/slider/01.jpg" alt="image1"/></a></li>
				<li><a href="/jp/service/web"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/slider/02.jpg" alt="image2"/></a></li>
				<li><a href="/jp/service/system"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/slider/03.jpg" alt="image1"/></a></li>
				<li><a href="/jp/about.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/slider/04.jpg" alt="image1"/></a></li>
			</ul>
			<div id="shadow" class="shadow"></div>
			<!--div id="nav-arrows" class="nav-arrows">
				<a href="#">Next</a>
				<a href="#">Previous</a>
			</div-->
		</div><!-- /wrapper -->
	</div><!-- #/slider -->
	<?php 
        echo '<script';
        ?>
 type="text/javascript" src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
js/modernizr.custom.46884.js"><?php 
        echo '</script';
        ?>
>
	<?php 
        echo '<script';
        ?>
 type="text/javascript" src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
js/jquery.slicebox.js"><?php 
        echo '</script';
        ?>
>
	<link rel="stylesheet" href="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
css/slide-banner.css">
	<div class="container">
		<div id="slide_banner" class="scroll-img">
			<ul>
				<li><a href="/jp/service/research/marketing.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/marketing_side_bn01_jp.jpg" alt="認知度調査"></a></li>
				<li><a href="/jp/service/research/mystery_shopper.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/marketing_side_bn02_jp.jpg" alt="ミステリーショッパー"></a></li>
				<li><a href="/jp/service/research/demand.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/marketing_side_bn03_jp.jpg" alt="顧客・従業員満足度調査"></a></li>
				<li><a href="/jp/service/research/consumer.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/marketing_side_bn04_jp.jpg" alt="消費者ニーズ調査"></a></li>
				<li><a href="/jp/service/research/product.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/marketing_side_bn05_jp.jpg" alt="新製品開発調査"></a></li>
				<li><a href="/jp/service/web/design.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/web_side_bn01_jp.png" alt="ホームページ新規制作"></a></li>
				<li><a href="/jp/service/web/renewal.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/web_side_bn02_jp.png" alt="ホームページリニューアル"></a></li>
				<li><a href="/jp/service/web/promotion.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/web_side_bn03_jp.png" alt="Webプロモーション"></a></li>
				<li><a href="/jp/service/web/maintenance.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/web_side_bn04_jp.png" alt="ホームページ運用 / 更新"></a></li>
				<li><a href="/jp/service/web/fb_design.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/web_side_bn05_jp.png" alt="Facebookページ制作"></a></li>
				<li><a href="/jp/service/web/fb_posting.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/web_side_bn06_jp.png" alt="Facebook運用"></a></li>
				<li><a href="/jp/service/web/publishing.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/web_side_bn07_jp.png" alt="印刷物・SPツール制作"></a></li>
				<li><a href="/jp/service/web_system/system_corporate.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/system_side_bn01_jp.jpg"width="200" height="100" alt="企業 / 店舗サイト関連"></a></li>
				<li><a href="/jp/service/web_system/system_e-commerce.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/system_side_bn02_jp.jpg" width="200" height="100" alt="販売サイト関連"></a></li>
				<li><a href="/jp/service/web_system/system_other.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/sidebar/system_side_bn03_jp.jpg" width="200" height="100" alt="その他"></a></li>
			</ul>
		</div>
		<div id="slide_banner-btn">
			<div id="slide_banner-backward"><span class="glyphicon glyphicon-menu-left"></span></div>
			<div id="slide_banner-forward"><span class="glyphicon glyphicon-menu-right"></span></div>
		</div>
	</div>
	<?php 
        echo '<script';
        ?>
 src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
js/jquery.scrollbox.min.js"><?php 
        echo '</script';
        ?>
>

	<div id="top" class="container">
		<div class="content">
			<div class="top_bn">
				<ul class="list-inline">
					<li class="tbn01"><a href="/jp/service/">弊社サービス</a></li>
					<li class="tbn02"><a href="/jp/works/website.php">実績紹介</a></li>
					<li class="tbn03"><a href="/jp/contact.php">お問い合わせ</a></li>
				</ul>
			</div><!-- end top_bn -->
			<div class="greeting">
				<!-- <h4>ご挨拶</h4> -->
				<h4><?php 
        echo smarty_modifier_lang('greeting', $_smarty_tpl->tpl_vars['lang_data']->value);
        ?>
</h4>
				<div class="greeting_text">
					<p>株式会社MONOQLO(モノクロ)のホームページへアクセスいただき、誠にありがとうございます。弊社は2013年11月にASEANの中心地、バンコクにて設立したBOI法人企業です。 現地日系 / ローカル企業様向けに市場調査、IT事業サービスを主軸に活動しております。昨今ネット検索によりタイムリーな情報が手に入る時代となりましたが、真に活きた情報を得るにはやはり現地の生の声が一番です。進出を検討中、あるいはすでに進出されている企業・店舗様に高品質で有益な情報を提供し、ビジネス成功に貢献することを理念に活動しております。</p>
					<a href="/jp/contact.php"><img src="<?php 
        echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
        ?>
img/contact_btn02.png" alt="Contact Monoqlo"></a>
				</div><!-- end greeting_text -->
			</div><!--  end greeting-->

			<?php 
        if ($_smarty_tpl->tpl_vars['news']->value) {
            ?>
			<div class="news">
				<h4>What’s new!</h4>
				<div class="news_content">
					<div class="news_button">
						<ul class="list-inline nav nav-tabs">
							<li class="nw01 active"><a data-toggle="tab" href="#news-all">All</a></li>
							<li class="nw02"><a data-toggle="tab" href="#news-only">News</a></li>
							<li class="nw03"><a data-toggle="tab" href="#news-it">IT</a></li>
							<li class="nw04"><a data-toggle="tab" href="#news-research">Research</a></li>
						</ul>
					</div><!-- end news_button -->
					<div class="tab-content news_text">
						<ul id="news-all" class="tab-pane fade in active">
							<?php 
            $_from = $_smarty_tpl->tpl_vars['news']->value;
            if (!is_array($_from) && !is_object($_from)) {
                settype($_from, 'array');
            }
            $_smarty_tpl->tpl_vars['n'] = new Smarty_Variable();
            $_smarty_tpl->tpl_vars['n']->_loop = false;
            foreach ($_from as $_smarty_tpl->tpl_vars['n']->value) {
                $_smarty_tpl->tpl_vars['n']->_loop = true;
                $foreach_n_Sav = $_smarty_tpl->tpl_vars['n'];
                ?>
							<li>
								<p class="news_date"><?php 
                echo $_smarty_tpl->tpl_vars['n']->value['datetime'];
                ?>
</p>
								<p class="news_type"><img src="<?php 
                echo $_smarty_tpl->tpl_vars['config']->value['common_url'];
                ?>
img/news_type02.jpg"></p>
								<p class="news_detail">
									<b><?php 
                echo $_smarty_tpl->tpl_vars['n']->value['title'];
                ?>
</b><br />
									<?php 
                echo $_smarty_tpl->tpl_vars['n']->value['body'];
                ?>

								</p>
							</li>
							<?php 
                $_smarty_tpl->tpl_vars['n'] = $foreach_n_Sav;
            }
            ?>
						</ul><!-- #/news-research -->
					</div><!-- end news_text -->
				</div><!-- end news_content -->
			</div><!-- end news -->
			<?php 
        }
        ?>
		</div><!-- end content -->
	</div>
		
	<?php 
        echo '<script';
        ?>
>
		$(function () {
			var Page = (function() {
				var $navArrows = $( '#nav-arrows' ).hide(),
					$shadow = $( '#shadow' ).hide(),
					slicebox = $( '#sb-slider' ).slicebox( {
						onReady : function() {
							$navArrows.show();
							$shadow.show();
						},
						orientation : 'h',
						cuboidsCount : 4
					} ),

					init = function() {
						initEvents();
					},
					initEvents = function() {
						slicebox.play();
						// add navigation events
						/*$navArrows.children( ':first' ).on( 'click', function() {
							slicebox.next();
							return false;
						} );

						$navArrows.children( ':last' ).on( 'click', function() {
							slicebox.previous();
							return false;
						} );*/
					};
					return { init : init };
			})();
			Page.init();
				
			$('#slide_banner').scrollbox({
				direction: 'h',
				distance: 240,
				speed: 100
			});
			
			$('#slide_banner-backward span').click(function () {
				$('#slide_banner').trigger('backward');
			});
			
			$('#slide_banner-forward span').click(function () {
				$('#slide_banner').trigger('forward');
			});
		});
	<?php 
        echo '</script';
        ?>
>
	
<?php 
        echo $_smarty_tpl->getSubTemplate("common/footer.tpl", $_smarty_tpl->cache_id, $_smarty_tpl->compile_id, 0, $_smarty_tpl->cache_lifetime, array(), 0);
        ?>

<?php 
    }