* @inheritDoc
*/
public function getId(): string {
- return 'contacts-dav';
+ return 'contacts';
}
/**
if ($route === 'contacts.Page.index') {
return -1;
}
- return 20;
+ return 25;
}
/**
* @inheritDoc
*/
public function getId(): string {
- return 'calendar-dav';
+ return 'calendar';
}
/**
if ($route === 'calendar.View.index') {
return -1;
}
- return 10;
+ return 30;
}
/**
* @inheritDoc
*/
public function getId(): string {
- return 'tasks-dav';
+ return 'tasks';
}
/**
if ($route === 'tasks.Page.index') {
return -1;
}
- return 10;
+ return 35;
}
/**
}
public function testGetId(): void {
- $this->assertEquals('contacts-dav', $this->provider->getId());
+ $this->assertEquals('contacts', $this->provider->getId());
}
public function testGetName(): void {
}
public function testGetId(): void {
- $this->assertEquals('calendar-dav', $this->provider->getId());
+ $this->assertEquals('calendar', $this->provider->getId());
}
public function testGetName(): void {
}
public function testGetId(): void {
- $this->assertEquals('tasks-dav', $this->provider->getId());
+ $this->assertEquals('tasks', $this->provider->getId());
}
public function testGetName(): void {
* @inheritDoc
*/
public function getId(): string {
- return 'settings_sections';
+ return 'settings';
}
/**
if ($route === 'settings.PersonalSettings.index' || $route === 'settings.AdminSettings.index') {
return -1;
}
- return 20;
+ // At the very bottom
+ return 500;
}
/**