本文整理匯總了PHP中Gallery::set方法的典型用法代碼示例。如果您正苦於以下問題:PHP Gallery::set方法的具體用法?PHP Gallery::set怎麽用?PHP Gallery::set使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Gallery
的用法示例。
在下文中一共展示了Gallery::set方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getList
function getList($params = NULL, $proyection = '*', $order = '1', $limit = '')
{
if ($this->db != NULL) {
$this->db->read($this->table, $proyection, $params);
$r = array();
while ($param = $this->db->getRow()) {
$gallery = new Gallery();
$gallery->set($param);
$r[] = $gallery;
}
return $r;
}
return NULL;
}
示例2: getList
function getList($pagina = 1, $orden = "", $nrpp = Configuracion::NRPP, $condicion = "1=1", $parametros = array())
{
$ordenPredeterminado = "{$orden}, id_imagen";
if (trim($orden) === "" || trim($orden) === NULL) {
$ordenPredeterminado = "id_imagen";
}
$registroInicial = ($pagina - 1) * $nrpp;
$this->bd->select($this->tabla, "*", $condicion, $parametros, $ordenPredeterminado, "{$registroInicial}, {$nrpp}");
$r = array();
while ($fila = $this->bd->getRow()) {
$imagen = new Gallery();
$imagen->set($fila);
$r[] = $imagen;
}
return $r;
}
示例3: setOption
setOption('multi_lingual', (int) isset($_POST['multi_lingual']));
$f = sanitize($_POST['date_format_list'], 3);
if ($f == 'custom') {
$f = sanitize($_POST['date_format'], 3);
}
setOption('date_format', $f);
setOption('UTF8_image_URI', (int) isset($_POST['UTF8_image_URI']));
$msg = zp_apply_filter('save_admin_general_data', '');
$returntab = "&tab=general";
}
/*** Gallery options ***/
if (isset($_POST['savegalleryoptions'])) {
$gallery->setPersistentArchive((int) isset($_POST['persistent_archive']));
$gallery->setGallerySession((int) isset($_POST['album_session']));
$gallery->setThumbSelectImages((int) isset($_POST['thumb_select_images']));
$gallery->set('gallery_title', process_language_string_save('gallery_title', 2));
$gallery->set('Gallery_description', process_language_string_save('Gallery_description', 1));
$gallery->set('website_title', process_language_string_save('website_title', 2));
$web = sanitize($_POST['website_url'], 3);
$gallery->setWebsiteURL($web);
$gallery->setAlbumUseImagedate((int) isset($_POST['album_use_new_image_date']));
$st = strtolower(sanitize($_POST['gallery_sorttype'], 3));
if ($st == 'custom') {
$st = strtolower(sanitize($_POST['customalbumsort'], 3));
}
$gallery->setSortType($st);
if ($st == 'manual' || $st == 'random') {
$gallery->setSortDirection(0);
} else {
$gallery->setSortDirection((int) isset($_POST['gallery_sortdirection']));
}