Drupal 6 自定义职业发布模块

发布于 2024-10-07 07:43:32 字数 531 浏览 0 评论 0原文

我正在尝试构建允许用户访问管理工作/部门并将其发布到我们的网站的模块。它还将允许最终用户申请给定的职位。

层次结构如下:

About Us Page (standard drupal page)
  -Careers (overview with list of all openings)
    -Department Pages (if one or more jobs are available, they'll be displayed here)
      -Individual Job posting with form to submit resume 

我目前正在使用两个用于职位和部门的自定义表。

我的所有管理(CRUD)工作都运行得很好——我的问题在于集成部门页面和个人职业页面的“drupal”方式。

我应该创建一个自定义内容类型来存储节点中的所有作业/部门数据吗?或者我应该保留我的自定义表格并与路径模块集成以设置所有部门页面和应用程序页面?另外,将工作申请表集成到模块中的最佳方式是什么?

我很感激任何帮助!

I'm attempting to build module that allows a user access to manage jobs/departments and post them to our website. It will also allow end users to apply for a given position.

The hierarchy is as follows:

About Us Page (standard drupal page)
  -Careers (overview with list of all openings)
    -Department Pages (if one or more jobs are available, they'll be displayed here)
      -Individual Job posting with form to submit resume 

I am currently using two custom tables for jobs and departments.

I have all the administration (CRUD) stuff working just fine -- my question lies in the 'drupal' way of integrating the department pages and individual career pages.

Should I create a custom content type that stores all the job/department data in the node? Or should I keep with my custom tables and integrate with the Path module to setup all the department pages and the application page? Also, what would be the best way to integrate the job application form into the module?

I appreciate any help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尾戒 2024-10-14 07:43:33

您可以为职位创建自定义节点类型,然后为职业创建一个分类词汇表,其中包含部门术语,以便您可以将分类术语分配给职位。这将是非常快速和容易做到的。

这也意味着您可以使用自定义面包屑模块​​输出漂亮的分类面包屑。自定义面包屑包含一个名为“自定义面包屑分类法”的子模块,因此您可以在面包屑中输出职业/部门信息。

您还可以使用 Pathauto 使用此方法输出结构良好的 SEO 友好 URL。

编辑说,通过这种方法,您只需启用分类术语视图即可使用视图来显示分类术语特定列表,这样您就可以显示 www.example.com/careers 上的所有空缺职位以及 www.example.com/ 上的所有部门空缺职位职业/部门名称。

You could create a custom node type for jobs and then create a taxonomy vocabulary for careers with terms for departments inside it so that you can then assign the taxonomy terms to a job. That would be very quick and easy to do.

This also means that you could output nice categorised breadcrumbs using the Custom Breadcrumbs module. Custom Breadcrumbs contains a submodule called Custom Breadcrumbs Taxonomy so you could output career/department information in the breadcrumbs.

You could also use Pathauto to output nicely structured SEO friendly URLS using this method.

Edited to say that with this method you could use Views to show taxonomy term specific lists simply by enabling the taxonomy term View, so you could show all openings at www.example.com/careers and all departmental openings at www.example.com/careers/department-name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文