Архив

Публикации с меткой ‘hostcms’
21 марта 2013 Нет комментариев

15 — id документа.

Core_Entity::factory('Document', 15)->Document_Versions->getCurrent()->execute();
Categories: CMS Tags: ,
20 марта 2013 Нет комментариев

Где dopphoto — XML-тег дополнительного свойства.

<xsl:for-each select="property_value[tag_name='dopphoto']">
	<a href="{../dir}{file}" target="_blank"><img src="{../dir}{file_small}" /></a>
</xsl:for-each>
Categories: CMS Tags:
20 марта 2013 Нет комментариев

Где dopphoto — XML-тег дополнительного свойства.

<a href="{dir}{property_value[tag_name='dopphoto']/file}" target="_blank">
	<img src="{dir}{property_value[tag_name='dopphoto']/file_small}" />
</a>
Categories: CMS Tags:
20 марта 2013 Нет комментариев

Где color — XML-тег дополнительного свойства.

<xsl:value-of select="property_value[tag_name='color']/value"/>
Categories: CMS Tags:
20 марта 2013 Нет комментариев

В примере будут отображаться товары с дополнительным свойством типа «флажок», где он отмечен. (Нужно было отображать товары, вручную отмеченные как новинки)
66id дополнительного свойства

$Shop_Controller_Show
	->shopItems()
	->queryBuilder()
	->join('property_value_ints', 'property_value_ints.entity_id', '=', 'shop_items.id')
	->where('property_value_ints.property_id', '=', 66)
	->where('property_value_ints.value', '=', 1)
	->clearOrderBy()
	->orderBy('id','DESC');
Categories: CMS Tags: ,
18 марта 2013 Нет комментариев

1. Модификация xsl карточки товара (по умолчанию /hostcmsfiles/xsl/56.xsl)
В начале документа:

	xmlns:php="http://php.net/xsl"

т.е. до вида:

<xsl:stylesheet version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:php="http://php.net/xsl"
	xmlns:hostcms="http://www.hostcms.ru/"
	exclude-result-prefixes="hostcms">

Где будет отображаться блок:

<xsl:value-of disable-output-escaping="yes" select="php:function('GetSpecialPrices',string(@id),string(price))" />

2. В /bootstrap.php

function GetSpecialPrices($id,$price) {
	$out='';
	$oCore_QueryBuilder_Select = Core_QueryBuilder::select()
		->from('shop_specialprices')
		->where('shop_item_id', '=', $id);
	$sRows = $oCore_QueryBuilder_Select->execute()->asAssoc()->result();
	$out='<table cellpadding="3" cellspacing="0" class="item_special_prices">';
	$out.='<tr><td colspan="7">Цена за сутки</td></tr>';
	$out.='<tr><td>1 д.</td><td>2-3 д.</td><td>4-7 д.</td><td>8-15 д.</td><td>16-30 д.</td><td>Свыше 30 д.</td></tr>';
	$spec_2=$spec_4=$spec_8=$spec_16=$spec_30=0;
	foreach ($sRows as $spec) {
		if ($spec['min_quantity']==2) {
			$spec_price_2=ceil($spec['price']);
			$spec_2=1;
		}
		if ($spec['min_quantity']==4) {
			$spec_price_4=ceil($spec['price']);
			$spec_4=1;
		}
		if ($spec['min_quantity']==8) {
			$spec_price_8=ceil($spec['price']);
			$spec_8=1;
		}
		if ($spec['min_quantity']==16) {
			$spec_price_16=ceil($spec['price']);
			$spec_16=1;
		}
		if ($spec['min_quantity']==30) {
			$spec_price_30=ceil($spec['price']);
			$spec_30=1;
		}
	}
	if ($spec_2==0) {
		$spec_price_2="&mdash;";
	}
	if ($spec_4==0) {
		$spec_price_4="&mdash;";
	}
	if ($spec_8==0) {
		$spec_price_8="&mdash;";
	}
	if ($spec_16==0) {
		$spec_price_16="&mdash;";
	}
	if ($spec_30==0) {
		$spec_price_30="&mdash;";
	}
	$out.='<tr><td>'.ceil($price).'</td><td>'.$spec_price_2.'</td><td>'.$spec_price_4.'</td><td>'.$spec_price_8.'</td><td>'.$spec_price_16.'</td><td>'.$spec_price_30.'</td></tr>';
	$out.='</table>';
	return $out;
}

Недостатки: диапазон специальных цен вписан статикой, но для конкретного случая такое решение подошло.

Categories: CMS Tags: ,
14 марта 2013 1 комментарий
<script type="text/javascript">
	function SearchBlur(text,input) {
		$inp = document.getElementById(input);
		if ($inp.value!='') {
			return false;
		}
		else {
			$inp.value=text;
		}
	}
	function SearchFocus(text,input) {
		$inp = document.getElementById(input);
		if ($inp.value==text) {
			$inp.value='';
		}
		else {
			return false;
		}
	}
</script>
<?php
function show_form() {
?>
	<form action="" method="post">
		<table class="blitz_feedback" border="0" cellspacing="0">
			<tr>
				<td class="label"><label for="name">ФИО</label></td>
				<td><input id="name" name="name" size="40" type="text"/></td>
			</tr>
			<tr>
				<td class="label"><label for="tel">Телефон</label></td>
				<td><input id="tel" name="tel" size="40" type="text"/></td>
			</tr>
			<tr>
				<td class="label"><label for="email">Почта</label></td>
				<td><input id="email" name="email" size="40" type="text"/></td>
			</tr>
			<tr>
				<td colspan="2">
					<textarea id="mess" name="mess" cols="41" rows="7" onfocus="SearchFocus('Ваше сообщение..','mess');" onblur="SearchBlur('Ваше сообщение..','mess');">Ваше сообщение..</textarea>
				</td>
			</tr>
			<tr>
				<td colspan="2" class="label" align="right"><input type="submit" value="Отправить" name="submit"/></td>
			</tr>
		</table>
	</form>
<?
}
function complete_mail() {
	$_POST['mess']=htmlspecialchars(trim($_POST['mess']));
	$_POST['name']=htmlspecialchars(trim($_POST['name']));
	$_POST['tel']=htmlspecialchars(trim($_POST['tel']));
	$_POST['email']=htmlspecialchars(trim($_POST['email']));
	if ((empty($_POST['name']))||(!preg_match("/[0-9a-z_]+@[0-9a-z_^\.]+\.[a-z]{2,3}/i",$_POST['email']))||(empty($_POST['mess']))||(empty($_POST['tel']))) {
		$errors=array();
		if (empty($_POST['name'])) {
			$errors[]=0;
		}
		if(!preg_match("/[0-9a-z_]+@[0-9a-z_^\.]+\.[a-z]{2,3}/i",$_POST['email'])) {
			$errors[]=1;
		}
		if(empty($_POST['mess'])) {
			$errors[]=2;
		}
		if(empty($_POST['tel'])) {
			$errors[]=3;
		}
		output_err($errors);
	}
	else {
		$oCore_QueryBuilder_Select = Core_QueryBuilder::select()
			->from('constants')
			->where('name','=','SUPERUSER_EMAIL');
		$aRows = $oCore_QueryBuilder_Select->execute()->asAssoc()->result();
		$to=$aRows[0]['value'];
		$mess='Имя отправителя:'.$_POST['name'].'
Контактный телефон:'.$_POST['tel'].'
Контактный email:'.$_POST['email'].'
'.$_POST['mess'];
		$title=$_SERVER['HTTP_HOST']." | Обратная связь";
		$from=$_POST['email'];
		$headers="From: {$from}\r\n";
		$headers.= "MIME-Version: 1.0\r\n";
		$headers.="Content-type: text/plain; charset=utf-8\r\n";
		$headers.="Content-Transfer-Encoding: 8bit";
		mail($to,$title,$mess,$headers);
		echo 'Спасибо! Ваше письмо отправлено.';
	}
}
function output_err($errors) {
	$err[0]='ОШИБКА! Не введено имя.';
	$err[1]='ОШИБКА! Неверно введен e-mail.';
	$err[2]='ОШИБКА! Не введено сообщение.';
	$err[3]='ОШИБКА! Не введен телефон.';
	foreach ($errors as $error) {
		echo '<p class="mess_err">'.$err[$error].'</p>';
	}
	show_form();
}
if (isset($_POST['submit'])) {
	complete_mail();
}
else {
	show_form();
}
?>

Взято за основу: http://www.hostcms.ru/forums/17/981/

Categories: CMS Tags: ,