Home
last modified time | relevance | path

Searched refs:oldName (Results 1 – 5 of 5) sorted by path

/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DDirectory.php1487 … 'path' => 'admin/directory/v1/customer/{customer}/resources/features/{oldName}/rename',
1495 'oldName' => [
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/Resource/
H A DResourcesFeatures.php122 * @param string $oldName The unique ID of the feature to rename.
126 public function rename($customer, $oldName, FeatureRename $postBody, $optParams = []) argument
128 $params = ['customer' => $customer, 'oldName' => $oldName, 'postBody' => $postBody];
/plugin/labeled/
H A Dadmin.php53 foreach ($_POST['labels'] as $oldName => $newValues) {
56 if ($labels[$oldName]['color'] != $newValues['color']) {
58 $this->hlp->changeColor($oldName, $newValues['color']);
65 if ($labels[$oldName]['ordernr'] != $newValues['order']) {
66 $this->hlp->changeOrder($oldName, $newValues['order']);
68 $this->hlp->changeOrder($oldName, 2147483647);
73 if ($oldName !== $newValues['name'] && !empty($newValues['name'])) {
75 $this->hlp->renameLabel($oldName, $newValues['name']);
/plugin/refnotes/
H A Dadmin.js599 let oldName = current.getName();
603 namespaces.delete(oldName);
606 setCurrent(list.renameValue(oldName, newName));
870 let oldName = current.getName();
874 notes.delete(oldName);
877 setCurrent(list.renameValue(oldName, newName));
/plugin/tagging/
H A Dhelper.php603 * @param string $oldName
606 public function renamePage($oldName, $newName) { argument
608 $db->query('UPDATE taggings SET pid = ? WHERE pid = ?', $newName, $oldName);