示例#1
0
文件: tags.php 项目: krgeek/gallery3
 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
0
 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;
 }
 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
0
文件: tags.php 项目: andyst/gallery3
 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
0
 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;
 }
 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;
 }