Textpattern PHP Cross Reference Content Management Systems

Source: /textpattern/lib/taglib.php - 156 lines - 2950 bytes - Text - Print

Description: Used for tag builder.

   1  <?php
   2  
   3  /*
   4   * Textpattern Content Management System
   5   * http://textpattern.com
   6   *
   7   * Copyright (C) 2016 The Textpattern Development Team
   8   *
   9   * This file is part of Textpattern.
  10   *
  11   * Textpattern is free software; you can redistribute it and/or
  12   * modify it under the terms of the GNU General Public License
  13   * as published by the Free Software Foundation, version 2.
  14   *
  15   * Textpattern is distributed in the hope that it will be useful,
  16   * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18   * GNU General Public License for more details.
  19   *
  20   * You should have received a copy of the GNU General Public License
  21   * along with Textpattern. If not, see <http://www.gnu.org/licenses/>.
  22   */
  23  
  24  /**
  25   * Used for tag builder.
  26   *
  27   * Populates the tag selector.
  28   *
  29   * @ignore
  30   */
  31  
  32  $article_tags = array(
  33      'permlink',
  34      'posted',
  35      'title',
  36      'body',
  37      'excerpt',
  38      'section',
  39      'category1',
  40      'category2',
  41      'article_image',
  42      'comments_invite',
  43      'author',
  44  );
  45  
  46  $link_tags = array(
  47      'link',
  48      'linkdesctitle',
  49      'link_name',
  50      'link_description',
  51      'link_category',
  52      'link_date',
  53  );
  54  
  55  $comment_tags = array(
  56      'comments',
  57      'comments_form',
  58      'comments_preview',
  59  );
  60  
  61  $comment_details_tags = array(
  62      'comment_permlink',
  63      'comment_name',
  64      'comment_email',
  65      'comment_web',
  66      'comment_time',
  67      'comment_message',
  68  );
  69  
  70  $comment_form_tags = array(
  71      'comment_name_input',
  72      'comment_email_input',
  73      'comment_web_input',
  74      'comment_message_input',
  75      'comment_remember',
  76      'comment_preview',
  77      'comment_submit',
  78  );
  79  
  80  $search_result_tags = array(
  81      'search_result_title',
  82      'search_result_excerpt',
  83      'search_result_date',
  84      'search_result_url',
  85  );
  86  
  87  $file_download_tags = array(
  88      'file_download_link',
  89      'file_download_name',
  90      'file_download_description',
  91      'file_download_category',
  92      'file_download_created',
  93      'file_download_modified',
  94      'file_download_size',
  95      'file_download_downloads',
  96  );
  97  
  98  $category_tags = array(
  99      'category',
 100      'if_category',
 101  );
 102  
 103  $section_tags = array(
 104      'section',
 105      'if_section',
 106  );
 107  
 108  $page_article_tags = array(
 109      'article',
 110      'article_custom',
 111  );
 112  
 113  $page_article_nav_tags = array(
 114      'prev_title',
 115      'next_title',
 116      'link_to_prev',
 117      'link_to_next',
 118      'older',
 119      'newer',
 120  );
 121  
 122  $page_nav_tags = array(
 123      'link_to_home',
 124      'section_list',
 125      'category_list',
 126      'popup',
 127      'recent_articles',
 128      'recent_comments',
 129      'related_articles',
 130      'search_input',
 131  );
 132  
 133  $page_xml_tags = array(
 134      'feed_link',
 135      'link_feed_link',
 136  );
 137  
 138  $page_misc_tags = array(
 139      'page_title',
 140      'css',
 141      'site_name',
 142      'site_slogan',
 143      'breadcrumb',
 144      'search_input',
 145      'email',
 146      'linklist',
 147      'password_protect',
 148      'output_form',
 149      'lang',
 150  );
 151  
 152  $page_file_tags = array(
 153      'file_download_list',
 154      'file_download',
 155      'file_download_link',
 156  );

title

Description

title

Description

title

Description

title

title

Body