summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 78973b8)
raw | patch | inline | side by side (parent: 78973b8)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 10 Aug 2006 06:40:41 +0000 (06:40 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 10 Aug 2006 06:40:41 +0000 (06:40 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4455 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/personal/generic/class_user.inc | patch | blob | history |
index 865993c2fa185c2a17611314a43f0fb9fbd3cbe2..32d0ba40202beba5f78b091d157b1ccab4096703 100644 (file)
/* attribute list for save action */
var $attributes= array("sn", "givenName", "uid", "personalTitle", "academicTitle",
"homePostalAddress", "homePhone", "labeledURI", "o", "ou", "dateOfBirth", "gender","preferredLanguage",
- "departmentNumber", "employeeNumber", "employeeType", "l", "st",
+ "departmentNumber", "employeeNumber", "employeeType", "l", "st","jpegPhoto",
"roomNumber", "telephoneNumber", "mobile", "pager", "cn", "userPKCS12",
"postalAddress", "facsimileTelephoneNumber", "userSMIMECertificate");
/* Load extra attributes: certificate and picture */
$this->load_cert();
+ $this->load_picture();
if ($this->userCertificate != ""){
$this->had_userCertificate= TRUE;
}
/* Get random number for pictures */
srand((double)microtime()*1000000);
$smarty->assign("rand", rand(0, 10000));
- $this->load_picture();
/* Do we represent a valid gosaAccount? */
/* Remove picture? */
if($this->acl_is_writeable("userPicture",(!is_object($this->parent) && !isset($_SESSION['edit']))) ){
if (isset($_POST['picture_remove'])){
+ $this->set_picture ();
$this->jpegPhoto= "*removed*";
- $this->set_picture ("./images/default.jpg");
$this->is_modified= TRUE;
-
return($smarty->fetch (get_template_path('generic_picture.tpl', TRUE, dirname(__FILE__))));
}
}
/* Load picture from file to object */
- function set_picture($filename)
+ function set_picture($filename ="")
{
if($this->acl_is_writeable("userPicture",(!is_object($this->parent) && !isset($_SESSION['edit'])))){
- if (!is_file($filename)){
+ if (!is_file($filename) || $filename =="" ){
$filename= "./images/default.jpg";
$this->jpegPhoto= "*removed*";
}