當前位置: 首頁>>代碼示例>>PHP>>正文


PHP printRating函數代碼示例

本文整理匯總了PHP中printRating函數的典型用法代碼示例。如果您正苦於以下問題:PHP printRating函數的具體用法?PHP printRating怎麽用?PHP printRating使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了printRating函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: printRating

 static function printRating($wrapperId = 'rating-wrapper')
 {
     if (!function_exists('printRating')) {
         return;
     }
     printRating(3, NULL, false);
     $table = "images";
     echo '<script>' . '$(window).load(function() { ' . '	$("#' . $wrapperId . ' .star-rating-live").click(function() { ' . '      if ( !zin.ALBUM_PAGE || !zin.ALBUM_PAGE.lastThumbSelection ) return false; ' . '		var id = images[zin.ALBUM_PAGE.lastThumbSelection.attr("index")]["object_id"];' . '    	var dataString = $("#' . $wrapperId . ' form").serialize(); ' . '      var idx = dataString.lastIndexOf("="); ' . '      var value = dataString.substring(idx + 1); ' . '      dataString = "star_rating-value_images_" + id + "=" + value; ' . '		$.ajax({ ' . '			type: "POST", ' . '			url: "' . WEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/rating' . '/update.php", ' . '			data: dataString + "&id=" + id + ' . '"&table=images", ' . '			success: function() { ' . '				images[zin.ALBUM_PAGE.lastThumbSelection.attr("index")].rating = value; ' . '			}' . '      });' . '	}); ' . '});' . '</script> ';
 }
開發者ID:Imagenomad,項目名稱:Unsupported,代碼行數:9,代碼來源:PluginOverrides.php

示例2: printAlbumRating

/**
 * @deprecated
 * @since 1.2.7
 */
function printAlbumRating($object = NULL)
{
    deprecated_functions::notify(gettext('Use printRating().'));
    global $_zp_current_album;
    if (is_null($object)) {
        $object = $_zp_current_album;
    }
    printRating(3, $object);
}
開發者ID:rb26,項目名稱:zenphoto,代碼行數:13,代碼來源:deprecated-functions.php

示例3: setOption

		<?php 
if (function_exists('printGoogleMap')) {
    ?>
<div class="section"><?php 
    setOption('gmap_width', 550, false);
    printGoogleMap();
    ?>
</div><?php 
}
?>
		<?php 
if (function_exists('printRating')) {
    ?>
<div class="section"><?php 
    printRating();
    ?>
</div><?php 
}
?>
		<?php 
if (function_exists('printCommentForm')) {
    ?>
<div class="section"><?php 
    printCommentForm();
    ?>
</div><?php 
}
?>
	</div>
	<div id="sidebar"<?php 
開發者ID:ariep,項目名稱:ZenPhoto20-DEV,代碼行數:30,代碼來源:image.php

示例4: printAlbumRating

/**
 * Prints the image rating information for the current image
 *
 */
function printAlbumRating()
{
    printRating("album");
}
開發者ID:ItsHaden,項目名稱:epicLanBootstrap,代碼行數:8,代碼來源:rating.php


注:本文中的printRating函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。