當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Tag::getTagOptions方法代碼示例

本文整理匯總了PHP中Tag::getTagOptions方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tag::getTagOptions方法的具體用法?PHP Tag::getTagOptions怎麽用?PHP Tag::getTagOptions使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tag的用法示例。


在下文中一共展示了Tag::getTagOptions方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: editPhoto

 public function editPhoto(Photo $photo)
 {
     $this->layout->title = trans('messages.Edit') . ' ' . Lang::choice('messages.Photos', 1);
     $albums_opt = Album::getAlbumOptions();
     $tag_opt = Tag::getTagOptions();
     $this->layout->main = View::make('users.dashboard')->nest('content', 'photos.edit', compact('photo', 'albums_opt', 'tag_opt'));
 }
開發者ID:rituzy,項目名稱:iblog,代碼行數:7,代碼來源:PhotoController.php

示例2: listTag

 public function listTag()
 {
     $tag_opt = Tag::getTagOptions();
     $tags = Tag::getTagsOrdered();
     $users = User::all();
     $this->layout->title = trans('messages.Tag listings');
     $this->layout->main = View::make('admin.dashboard')->nest('content', 'tags.list', compact('tags', 'users', 'tag_opt'));
 }
開發者ID:rituzy,項目名稱:iblog,代碼行數:8,代碼來源:TagController.php

示例3: showCommentAll

 public function showCommentAll(Comment $comment)
 {
     $this->layout->title = trans('messages.COCC');
     $users = User::all();
     $tag_opt = Tag::getTagOptions();
     $comments2comments = Comment::getComments2comments();
     $recentPosts = Post::getPostsOrdered();
     $tags = Tag::getTagsOrdered();
     $this->layout->main = View::make('home', array('recentPosts' => $recentPosts, 'allTags' => $tags))->nest('content', 'comments.singleComment4c', compact('comment', 'users', 'comments2comments', 'tag_opt'));
 }
開發者ID:rituzy,項目名稱:iblog,代碼行數:10,代碼來源:CommentController.php

示例4: editPost

 public function editPost(Post $post)
 {
     $this->layout->title = trans('messages.Edit') . ' ' . Lang::choice('messages.Posts', 1);
     $tag_opt = Tag::getTagOptions();
     $this->layout->main = View::make('admin.dashboard')->nest('content', 'posts.edit', compact('post', 'tag_opt'));
 }
開發者ID:rituzy,項目名稱:iblog,代碼行數:6,代碼來源:PostController.php

示例5: editCraft

 public function editCraft(Craft $craft)
 {
     $this->layout->title = trans('messages.Edit') . ' ' . Lang::choice('messages.Crafts', 1);
     $tag_opt = Tag::getTagOptions();
     $this->layout->main = View::make('users.dashboard')->nest('content', 'crafts.edit', compact('craft', 'tag_opt'));
 }
開發者ID:rituzy,項目名稱:iblog,代碼行數:6,代碼來源:CraftController.php


注:本文中的Tag::getTagOptions方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。