当前位置: 首页>>代码示例>>PHP>>正文


PHP person::checkZugangscode方法代码示例

本文整理汇总了PHP中person::checkZugangscode方法的典型用法代码示例。如果您正苦于以下问题:PHP person::checkZugangscode方法的具体用法?PHP person::checkZugangscode怎么用?PHP person::checkZugangscode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在person的用法示例。


在下文中一共展示了person::checkZugangscode方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setSprache

require_once '../../../config/cis.config.inc.php';
require_once '../../../include/functions.inc.php';
require_once '../../../include/person.class.php';
require_once '../../../include/benutzer.class.php';
require_once '../../../include/benutzerberechtigung.class.php';
require_once '../../../include/akte.class.php';
require_once '../../../include/dokument.class.php';
require_once '../../../include/mail.class.php';
require_once '../../../include/phrasen.class.php';
header("Content-Type: text/html; charset=utf-8");
if (isset($_GET['lang'])) {
    setSprache($_GET['lang']);
}
$code = $_SESSION['incoming/user'];
$person = new person();
$person_id = $person->checkZugangscode($code);
if ($person_id != $_GET['person_id']) {
    die('Sie haben keine Berechtigung für diese Seite');
}
$dokumenttyp = isset($_GET['dokumenttyp']) ? $_GET['dokumenttyp'] : 'LearnAgr';
$sprache = getSprache();
$p = new phrasen($sprache);
$PHP_SELF = $_SERVER['PHP_SELF'];
echo "<html>\n\t\t<head><title>File-Upload</title></head>\n\t\t<body>";
//Bei Upload des Bildes
if (isset($_POST['submitbild'])) {
    if (isset($_FILES['bild']['tmp_name'])) {
        //Extension herausfiltern
        $ext = explode('.', $_FILES['bild']['name']);
        $ext = mb_strtolower($ext[count($ext) - 1]);
        $filename = $_FILES['bild']['tmp_name'];
开发者ID:andikoller,项目名称:FHC-3.0-FHBGLD,代码行数:31,代码来源:akteupload.php

示例2: setSprache

 * Authors: Karl Burkhart <burkhart@technikum-wien.at>
 * 
 */
require_once '../../../config/cis.config.inc.php';
require_once '../../../include/phrasen.class.php';
require_once '../../../include/person.class.php';
if (isset($_GET['lang'])) {
    setSprache($_GET['lang']);
}
$sprache = getSprache();
$p = new phrasen($sprache);
if (isset($_POST['userid'])) {
    $login = trim($_REQUEST['userid']);
    $person = new person();
    session_start();
    $person_id = $person->checkZugangscode($login);
    //Zugangscode wird  überprüft
    if ($person_id != false) {
        $_SESSION['prestudent/user'] = $login;
        $_SESSION['prestudent/person_id'] = $person_id;
        header('Location: prestudent.php');
        exit;
    } else {
        $errormsg = $p->t('incoming/ungueltigerbenutzer');
    }
}
?>
<!DOCTYPE html>
<html>
    <head>
        <title>Prestudenten-Tool</title>
开发者ID:andikoller,项目名称:FHC-3.0-FHBGLD,代码行数:31,代码来源:index.php

示例3: imagecopyresampled

    //Bild nur verkleinern aber nicht vergroessern
    if ($width_orig > $width || $height_orig > $height) {
        imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
    } else {
        $image_p = $image;
    }
    imagejpeg($image_p, $filename, 80);
    @imagedestroy($image_p);
    @imagedestroy($image);
}
if (!isset($_GET['person_id'])) {
    die($p->t('global/fehlerBeiDerParameteruebergabe'));
}
$person = new person();
if (isset($_SESSION['prestudent/user'])) {
    $person_id = $person->checkZugangscode($_SESSION['prestudent/user']);
}
if (isset($_SESSION['incoming/user'])) {
    $person_id = $person->checkZugangscode($_SESSION['prestudent/user']);
}
if ($person_id != $_GET['person_id']) {
    die('Sie haben keine Berechtigung für diese Seite');
}
//Bei Upload des Bildes
if (isset($_POST['submitbild'])) {
    if (isset($_FILES['bild']['tmp_name'])) {
        //Extension herausfiltern
        $ext = explode('.', $_FILES['bild']['name']);
        $ext = mb_strtolower($ext[count($ext) - 1]);
        $width = 101;
        $height = 130;
开发者ID:andikoller,项目名称:FHC-3.0-FHBGLD,代码行数:31,代码来源:bildupload.php

示例4: person

 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 *
 * Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
 *          Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at> and
 *          Rudolf Hangl <rudolf.hangl@technikum-wien.at>.
 */
// Holt den Hexcode eines Aktes aus der DB wandelt es in Zeichen
// um und gibt das Dokument zurueck.
require_once 'auth.php';
require_once '../../../config/vilesci.config.inc.php';
require_once '../../../include/akte.class.php';
require_once '../../../include/person.class.php';
$person = new person();
$person_id = $person->checkZugangscode($_SESSION['incoming/user']);
//base64 Dump aus der DB holen
if (isset($_GET['id']) && is_numeric($_GET['id'])) {
    $akte = new akte($_GET['id']);
    if ($person_id != $akte->person_id) {
        die('Sie haben keine Berechtigung fuer diese Datei');
    }
    //Header fuer Bild schicken
    header("Content-type: {$akte->mimetype}");
    header('Content-Disposition: attachment; filename="' . $akte->titel . '"');
    echo base64_decode($akte->inhalt);
} else {
    echo 'Unkown type';
}
?>
>>>>>>> fee287127566cd5d18c55b556d178b661711c694
开发者ID:andikoller,项目名称:FHC-3.0-FHBGLD,代码行数:31,代码来源:akte.php


注:本文中的person::checkZugangscode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。