common.inc.php
来自「UCH求职招聘插件。 1.个人简历发布(可设置简历状态隐私」· PHP 代码 · 共 36 行
PHP
36 行
<?php
/*********************/
/* */
/* Version : 5.1.0 */
/* Author : RM */
/* Comment : 071223 */
/* */
/*********************/
if ( !defined( "IN_UCHOME" ) )
{
exit( "Access Denied" );
}
$acs = array( "index", "resumes", "resume", "me", "collect", "apply", "myjobs", "company", "newjob", "post", "jobs", "jobresumes" );
$ac = !empty( $_GET['ac'] ) || !in_array( $_GET['ac'], $acs ) ? "index" : $_GET['ac'];
$op = empty( $_GET['op'] ) ? "" : $_GET['op'];
if ( empty( $_SGLOBAL['supe_uid'] ) )
{
if ( $_SERVER['REQUEST_METHOD'] == "GET" )
{
ssetcookie( "_refer", rawurlencode( $_SERVER['REQUEST_URI'] ) );
}
else
{
ssetcookie( "_refer", rawurlencode( "parking.php?ac=".$ac ) );
}
showmessage( "to_login", "do.php?ac=login" );
}
$space = getspace( $_SGLOBAL['supe_uid'] );
if ( empty( $space ) )
{
showmessage( "space_does_not_exist" );
}
$actives = array( " class=\"active\"" );
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?