本文整理汇总了PHP中tag::get_add_form方法的典型用法代码示例。如果您正苦于以下问题:PHP tag::get_add_form方法的具体用法?PHP tag::get_add_form怎么用?PHP tag::get_add_form使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tag
的用法示例。
在下文中一共展示了tag::get_add_form方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _form_add
public function _form_add($item_id)
{
$item = ORM::factory("item", $item_id);
access::required("view", $item);
access::required("edit", $item);
return tag::get_add_form($item);
}
示例2: sidebar_blocks
static function sidebar_blocks($theme)
{
$block = new Block();
$block->css_id = "gTag";
$block->title = t("Popular Tags");
$block->content = new View("tag_block.html");
$block->content->cloud = tag::cloud(30);
if ($theme->page_type() != "tag" && access::can("edit", $theme->item())) {
$controller = new Tags_Controller();
$block->content->form = tag::get_add_form($theme->item());
} else {
$block->content->form = "";
}
return $block;
}
示例3: get
static function get($block_id, $theme)
{
$block = "";
switch ($block_id) {
case "tag_cloud_site":
$options = array();
foreach (array("tagcolor", "background_color", "mouseover", "transparent", "speed", "distribution") as $option) {
$value = module::get_var("tag_cloud", $option, null);
if (!empty($value)) {
switch ($option) {
case "tagcolor":
$options["tcolor"] = $value;
break;
case "mouseover":
$options["hicolor"] = $value;
break;
case "background_color":
$options["bgColor"] = $value;
break;
case "transparent":
$options["wmode"] = "transparent";
break;
case "speed":
$options["tspeed"] = $value;
break;
case "distribution":
$options["distr"] = "true";
break;
}
}
}
$block = new Block();
$block->css_id = "g-tag";
$block->title = t("Tag Cloud");
$block->content = new View("tag_cloud_block.html");
$block->content->cloud = tag::cloud(30);
$block->content->options = $options;
if ($theme->item() && $theme->page_subtype() != "tag" && access::can("edit", $theme->item())) {
$controller = new Tags_Controller();
$block->content->form = tag::get_add_form($theme->item());
} else {
$block->content->form = "";
}
break;
}
return $block;
}
示例4: create
public function create($item_id)
{
$item = ORM::factory("item", $item_id);
access::required("view", $item);
access::required("edit", $item);
$form = tag::get_add_form($item);
if ($form->validate()) {
foreach (explode(",", $form->add_tag->inputs["name"]->value) as $tag_name) {
$tag_name = trim($tag_name);
if ($tag_name) {
$tag = tag::add($item, $tag_name);
}
}
print json_encode(array("result" => "success", "cloud" => (string) tag::cloud(30)));
} else {
print json_encode(array("result" => "error", "form" => (string) $form));
}
}
示例5: get
static function get($block_id, $theme)
{
$block = "";
switch ($block_id) {
case "tag":
$block = new Block();
$block->css_id = "g-tag";
$block->title = t("Popular tags");
$block->content = new View("tag_block.html");
$block->content->cloud = tag::cloud(module::get_var("tag", "tag_cloud_size", 30));
if ($theme->item() && $theme->page_subtype() != "tag" && access::can("edit", $theme->item())) {
$controller = new Tags_Controller();
$block->content->form = tag::get_add_form($theme->item());
} else {
$block->content->form = "";
}
break;
}
return $block;
}
示例6: get
static function get($block_id, $theme)
{
$block = "";
switch ($block_id) {
case "tag_cloud_html5_site":
// load settings
$options = module::get_var("tag_cloud_html5", "options_sidebar", null);
$maxtags = module::get_var("tag_cloud_html5", "maxtags_sidebar", null);
$showlink = module::get_var("tag_cloud_html5", "show_wholecloud_link", null);
$showaddtag = module::get_var("tag_cloud_html5", "show_add_tag_form", null);
$width = module::get_var("tag_cloud_html5", "width_sidebar", null);
$height = module::get_var("tag_cloud_html5", "height_sidebar", null);
// make the block
$block = new Block();
$block->css_id = "g-tag";
$block->title = t("Tag cloud");
$block->content = new View("tag_cloud_html5_block.html");
$block->content->cloud = tag::cloud($maxtags);
$block->content->options = $options;
$block->content->width = $width;
$block->content->height = $height;
// add the 'View whole cloud' link if needed
if ($showlink) {
$block->content->wholecloud_link = "<a href=" . url::site("tag_cloud/") . ">" . t("View whole cloud") . "</a>";
} else {
$block->content->wholecloud_link = "";
}
// add the 'Add tag' form if needed
if ($theme->item() && $theme->page_subtype() != "tag" && access::can("edit", $theme->item()) && $showaddtag) {
$controller = new Tags_Controller();
$block->content->form = tag::get_add_form($theme->item());
} else {
$block->content->form = "";
}
break;
}
return $block;
}