本文整理匯總了PHP中CustomView::getNumRows方法的典型用法代碼示例。如果您正苦於以下問題:PHP CustomView::getNumRows方法的具體用法?PHP CustomView::getNumRows怎麽用?PHP CustomView::getNumRows使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CustomView
的用法示例。
在下文中一共展示了CustomView::getNumRows方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: CustomView
<?php
// Copyright SQCRM. For licensing, reuse, modification and distribution see license.txt
/**
* CustomView edit
* @author Abhik Chakraborty
*/
$do_edit = true;
if (isset($_REQUEST["sqrecord"]) && (int) $_REQUEST["sqrecord"] > 0) {
$module_obj = new CustomView();
$module_obj->getId($_REQUEST["sqrecord"]);
if ($module_obj->getNumRows() > 0) {
if ($module_obj->iduser != $_SESSION["do_user"]->iduser) {
$do_edit = false;
}
if ($module_obj->is_editable == 0) {
$do_edit = false;
}
} else {
$do_edit = false;
}
} else {
$do_edit = false;
}
if ($do_edit === false) {
echo '<div class="alert alert-error alert-block" style="height:100px;margin-top:100px;margin-left:200px;margin-right:200px;">';
echo '<h4>';
echo _('Access Denied ! ');
echo '</h4>';
echo _('You are not authorized to perform this operation.');
echo '</div>';