本文整理汇总了PHP中Review::load方法的典型用法代码示例。如果您正苦于以下问题:PHP Review::load方法的具体用法?PHP Review::load怎么用?PHP Review::load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Review
的用法示例。
在下文中一共展示了Review::load方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: render
function render()
{
$op = $this->op = @$this->module_params['op'];
if ($this->op) {
if (!empty($this->module_params['comment'])) {
$target = new Comment2();
$target->load($this->module_params['comment']);
} else {
if (!empty($this->module_params['review'])) {
$target = new Review();
$target->load($this->module_params['review']);
} else {
if (!empty($this->module_params['uid'])) {
$target = new ShadowUser('videoplay');
$target->load_by_pa((int) $this->module_params['uid']);
}
}
}
switch ($op) {
case "delete":
if (!empty($this->module_params['uid'])) {
$target->remove();
} else {
$target->delete();
}
break;
case "hide":
case "show":
if (!empty($this->module_params['uid'])) {
$target->toggle_active($op == 'hide' ? -1 : 1);
} else {
$target->toggle_active($op == 'hide' ? 0 : 1);
}
break;
}
}
switch ($this->mode) {
case "comments":
$inner_template = dirname(__FILE__) . '/admin_content.tpl';
list($this->contents, $this->n, $this->n_pages, $this->page, $this->per_page) = Comment2::get_recent($this->per_page, $this->page);
break;
case "reviews":
$inner_template = dirname(__FILE__) . '/admin_content.tpl';
list($this->contents, $this->n, $this->n_pages, $this->page, $this->per_page) = Review::get_recent($this->per_page, $this->page);
break;
case "users":
$inner_template = dirname(__FILE__) . '/admin_users.tpl';
list($this->users, $this->n, $this->n_pages, $this->page, $this->per_page) = ShadowUser::admin_paged('videoplay', $this->per_page, $this->page);
break;
default:
return "Unknown display type.<pre>" . print_r($this, 1) . "</pre>";
break;
}
$inner_html_gen =& new Template($inner_template, $this);
$this->inner_HTML = $inner_html_gen->fetch();
$content = parent::render();
return $content;
}
示例2: get
public static function get($review_id)
{
$rev = new Review();
$rev->load($review_id);
return $rev;
}