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


PHP Photograph::attach_file_commuter方法代码示例

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


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

示例1: Photograph

                if ($admin_user->update()) {
                    $session->message("Success! The password was updated. ");
                    redirect_to('public-view-profile.php');
                } else {
                    $session->message("Error! The user details could not be updated. ");
                }
            } else {
                $session->message("Error! The existing password did not match. ");
            }
        }
        if (isset($_POST['upload'])) {
            $photo = new Photograph();
            $photo->commuter_id = $user->id;
            $photo->photo_type = 9;
            // photo_type 9 is "User Profile"
            $photo->attach_file_commuter($_FILES['file_upload'], $user->id, $user->first_name, $user->last_name);
            if ($photo->save()) {
                $session->message("Success! The photo was uploaded successfully. ");
                redirect_to('public-view-profile.php');
            } else {
                $message = join("<br />", $photo->errors);
            }
        }
    } else {
        //everyone else
        $session->message("Error! You do not have sufficient priviledges to view the requested page. ");
        redirect_to("index.php");
    }
} else {
    //not logged in... GTFO!
    $session->message("Error! You must login to view the requested page. ");
开发者ID:afthaj,项目名称:gaman-new,代码行数:31,代码来源:public-view-profile.php


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