Home
last modified time | relevance | path

Searched refs:uppercats (Results 1 – 14 of 14) sorted by relevance

/dports/www/piwigo/piwigo/install/
H A Dupgrade_1.3.0.php87 $uppercats = array(); variable
89 array_push($uppercats, $id);
92 array_push($uppercats, $id_uppercats[$id]);
95 $data['uppercats'] = implode(',', array_reverse($uppercats));
H A Dpiwigo_structure-mysql.sql52 `uppercats` varchar(255) NOT NULL default '',
/dports/www/piwigo/piwigo/admin/
H A Dcat_modify.php35 $uppercats = '';
40 $uppercats = $page['plain_structure'][$category_id]['uppercats'];
48 $uppercats = $row['uppercats'];
51 $upper_array = explode( ',', $uppercats );
55 $query.= ' FROM '.CATEGORIES_TABLE.' WHERE id IN ('.$uppercats.')';
H A Dcat_list.php77 foreach ($uppercats_of as $id => $uppercats)
79 if (preg_match('/(^|,)'.$cat_id.'(,|$)/', $uppercats))
259 foreach ($all_categories as $id => $uppercats)
261 foreach (array_slice(explode(',', $uppercats), 0, -1) as $uppercat_id)
H A Dgroup_perm.php64 $uppercats = get_uppercat_ids($_POST['cat_false']); variable
70 WHERE id IN ('.implode(',', $uppercats).')
H A Dcat_move.php230 foreach ($uppercats_of as $id => $uppercats)
232 if (preg_match('/(^|,)'.$cat_id.'(,|$)/', $uppercats))
H A Dhistory.php273 foreach ($uppercats_of as $category_id => $uppercats)
276 $uppercats
/dports/www/piwigo/piwigo/include/
H A Dfunctions_html.inc.php82 * @param string $uppercats
88 function get_cat_display_name_cache($uppercats, argument
114 …$single_url = add_url_params(get_root_url().$url.array_pop(explode(',', $uppercats)), $add_url_par…
123 foreach (explode(',', $uppercats) as $category_id)
/dports/www/piwigo/piwigo/admin/include/
H A Dfunctions.php798 $uppercats = get_uppercat_ids($categories);
802 WHERE id IN ('.implode(',', $uppercats).')
972 $uppercats = array();
982 $uppercats = array_merge($uppercats,
985 $uppercats = array_unique($uppercats);
987 return $uppercats;
1094 $uppercats = str_replace(',', '/', $category['uppercats']);
1099 $uppercats
/dports/graphics/shotwell/shotwell-0.30.14/plugins/shotwell-publishing/
H A DPiwigoPublishing.vala66 public string uppercats;
69 public Category(int id, string name, string uppercats, string? comment = "") {
72 this.uppercats = uppercats;
79 // for new categories abuse the uppercats value for
81 this.uppercats = parent_id.to_string();
619 string uppercats = "";
625 uppercats_node = doc.get_named_child(category_node_iter, "uppercats");
626 uppercats = (string)uppercats_node->get_content();
633 categories += new Category(int.parse(id_string), name, uppercats);
638 string[] upcatids = categories[i].uppercats.split(",");
[all …]
/dports/graphics/elementary-photos/photos-2.7.1/plugins/pantheon-photos-publishing/
H A DPiwigoPublishing.vala75 public string uppercats;
78 public Category (int id, string name, string uppercats, string? comment = "") {
81 this.uppercats = uppercats;
88 // for new categories abuse the uppercats value for
90 this.uppercats = parent_id.to_string ();
596 string uppercats = "";
600 uppercats_node = doc.get_named_child (category_node_iter, "uppercats");
601 uppercats = (string)uppercats_node->get_content ();
606 categories += new Category (int.parse (id_string), name, uppercats);
615 string[] upcatids = categories[i].uppercats.split (",");
[all …]
/dports/graphics/kipi-plugins/kipi-plugins-21.12.3/piwigo/
H A Dpiwigotalker.cpp547 QString uppercats = ts.readElementText(); in parseResponseListAlbums() local
548 QStringList catlist = uppercats.split(QLatin1Char(',')); in parseResponseListAlbums()
/dports/graphics/digikam/digikam-7.4.0/core/dplugins/generic/webservices/piwigo/
H A Dpiwigotalker.cpp608 QString uppercats = ts.readElementText(); in parseResponseListAlbums() local
609 QStringList catlist = uppercats.split(QLatin1Char(',')); in parseResponseListAlbums()
/dports/www/piwigo/piwigo/admin/themes/default/template/
H A Dcat_modify.tpl21 return !(/\b{$CAT_ID}\b/.test(cat.uppercats));