现在的位置: 首页 > 综合 > 正文

Joomla with blog modification

2012年08月01日 ⁄ 综合 ⁄ 共 1022字 ⁄ 字号 评论关闭

简介:这是Joomla with blog modification的详细页面,介绍了和php,php Joomla with blog modification有关的知识、技巧、经验,和一些php源码等。

class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=359493' scrolling='no'>
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);

爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具

http://biancheng.dnbcw.info/php/359493.html pageNo:1

抱歉!评论已关闭.