Joomla with blog modification_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > Joomla with blog modification

Joomla with blog modification

 2011/10/19 8:05:17  zycbob  http://zycbob.iteye.com  我要评论(0)
  • 摘要:1.backendroot\administrator\components\com_content\admin.content.html.phpline833<tr><td><labelfor="sectionid"><?phpechoJText::_('Images');?></label></td><td><?phpecho$lists['images'];?></td><
  • 标签:
1. backend

root\administrator\components\com_content\admin.content.html.php

line 833

		<tr>
			<td>
				<label for="sectionid">
					<?php echo JText::_( 'Images' ); ?>
				</label>
			</td>
			<td>
				<?php echo $lists['images']; ?>
			</td>
			<td>&nbsp;
			</td>
			<td>&nbsp;
		</tr>



root\administrator\components\com_content\controller.php

line 450

function editContent($edit)
		$lists['images'] = '<input type="text" value="'.$row->images[0].'" maxlength="255" size="100" id="images" name="i" class="inputbox">';




line 565

function saveContent()
		$getImages = JRequest::getVar( 'images', null, 'post', 'array' );
		$row->images = 	$getImages[0];





2. frontend


root\templates\theme-green\html\com_content\category\default_items.php
var_dump($item->images);

root\templates\theme-green\html\com_content\section\blog_item.php
var_dump($this->item->images);


  • 相关文章
发表评论
用户名: 匿名