adminhandler.php: $option_items[_t('Name & Tagline')] = array( adminhandler.php: 'label' => _t('Site Tagline'), adminhandler.php: $this->theme->tags = Tags::get(); adminhandler.php: $this->theme->max = Tags::max_count(); adminhandler.php: $tag = Tags::get_by_id($id); adminhandler.php: Tags::delete($tag); adminhandler.php: _n('Tag %s has been deleted.', adminhandler.php: 'Tags %s have been deleted.', adminhandler.php: $tag = Tags::get_by_id($id); adminhandler.php: Tags::rename($master, $tag_names); adminhandler.php: _n('Tag %s has been renamed to %s.', adminhandler.php: 'Tags %s have been renamed to %s.', adminhandler.php: $this->theme->tags = Tags::get(); adminhandler.php: $this->theme->max = Tags::max_count(); adminhandler.php: 'tags' => array( 'url' => URL::get( 'admin', 'page=tags' ), 'title' => _t( 'Manage blog tags' ), 'text' => _t( 'Tags' ), 'hotkey' => 'A', 'access'=>array('manage_tags'=>true) ), formui.php:class FormControlTag extends FormContainer formui.php: $max = Tags::max_count(); inputfilter.php: // Language-Tag = Primary-tag *( "-" Subtag ) installhandler.php: Tags::rename( $slug_to_id[ $tag_slug ], array_keys( $tag_texts ) ); post.php: /* Tags exist which match the text or the slug */ post.php: * Tag exists. post.php: Tag::attach_to_post( $existing_tag->id, $this->fields['id'] ); post.php: $tag = Tag::create( array( 'tag_text' => $new_tag_text, 'tag_slug' => $new_tag_slug ) ); post.php: Tag::attach_to_post( $tag->id, $this->fields['id'] ); post.php: Tag::detatch_from_post( $t->tag_id, $this->fields['id'] ); post.php: $tag = Tags::get_by_slug( $tag_slug ); post.php: Tag::detatch_from_post( $tag->id, $this->id ); post.php: $form->append('text', 'tags', 'null:null', _t('Tags, separated by, commas'), 'admincontrol_text'); rewriterules.php: array( 'name' => 'atom_feed_tag', 'parse_regex' => '%^tag/(?P[^/]+)/atom(?:/page/(?P\d+))?/?$%i', 'build_str' => 'tag/{$tag}/atom(/page/{$page})', 'handler' => 'AtomHandler', 'action' => 'tag_collection', 'priority' => 8, 'description' => 'Atom Tag Collection' ),