| 1 | <?php |
||
| 14 | abstract class AbstractCourseSearchDomain extends AbstractCanvasSearchDomain |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Localize the general Canvas URL to a particular course (if necessary) |
||
| 18 | * |
||
| 19 | * Will "localize" the `url` parameter after initialization -- i.e. if the |
||
| 20 | * URL of the search domain is `https://canvas.instructure.com` and the ID |
||
| 21 | * is 43, the URL will be localized to |
||
| 22 | * `https://canvas.instructure.com/courses/43` |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | protected function localizeUrl() |
||
| 38 | } |
||
| 39 |