0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
prefs
/
[
Home
]
File: metatag.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: metatag.php 33195 2011-03-02 17:43:40Z changi67 $ function prefs_metatag_list() { return array( 'metatag_keywords' => array( 'name' => tra('Keywords'), 'type' => 'textarea', 'size' => '4', ), 'metatag_freetags' => array( 'name' => tra('Include freetags'), 'type' => 'flag', 'dependencies' => array( 'feature_freetags', ), ), 'metatag_threadtitle' => array( 'name' => tra('Use thread title instead'), 'type' => 'flag', 'dependencies' => array( 'feature_forums', ), ), 'metatag_imagetitle' => array( 'name' => tra('Use image title instead'), 'type' => 'flag', 'dependencies' => array( 'feature_galleries', ), ), 'metatag_description' => array( 'name' => tra('Description'), 'type' => 'textarea', 'size' => '5', ), 'metatag_pagedesc' => array( 'name' => tra('Use individual page description for Wiki pages instead'), 'type' => 'flag', ), 'metatag_author' => array( 'name' => tra('Author'), 'type' => 'text', 'size' => '50', ), 'metatag_geoposition' => array( 'name' => tra('geo.position'), 'type' => 'text', 'size' => '50', ), 'metatag_georegion' => array( 'name' => tra('geo.region'), 'type' => 'text', 'size' => '50', ), 'metatag_geoplacename' => array( 'name' => tra('geo.placename'), 'type' => 'text', 'size' => '50', ), 'metatag_robots' => array( 'name' => tra('Meta robots'), 'type' => 'text', 'size' => '50', ), 'metatag_revisitafter' => array( 'name' => tra('Revisit after'), 'type' => 'text', 'size' => '50', ), ); }