问题标签 [capability]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
iphone - 在哪里可以找到 iOS 平台功能的列表?
我正在制作一个应用程序,告诉用户他们正在使用什么样的 iOS 设备,然后告诉他们设备的功能。下面是一些示例代码:
这正是我正在寻找的东西。第一行表示第一代 iPhone 有一个内置扬声器、一个内置摄像头、它支持外接麦克风等。有人知道我在哪里可以获得所有设备的完整列表吗?我的清单不见了:iPhone 4、iPhone 4s、第 3 代 iPod、第 4 代 iPod 和所有代的 iPad。谢谢你。
php - 自定义分类法 - 根据角色或能力设置访问权限
我只是在学习 Wordpress 的自定义分类法。如何限制我的用户使用分类法的访问权限。例如,我创建了一个名为的分类法featured
,我只希望编辑及以上角色能够向该分类法添加帖子。
如何设置访问级别?无论是基于用户角色还是能力,都对我有用。
这是我用于分类的代码:
linux - 防止进程更改其进程组 ID (`setpgid`)
Linux 中是否有任何方法可以防止进程修改其进程组 ID,即通过调用setpgid
?我需要这样做,因为我正在创建一个沙箱,并且我希望能够在 n 秒后杀死一个进程及其所有子进程。我正在从进程组 ID 中识别子代,因此我需要确保无法更改此值。
有一些东西被调用CAP_SETGID
,但我认为这是指进程的用户组 ID,即设置的内容与setgid
哪些不同setpgid
?
php - 根据角色或能力限制对 Wordpress 页面的访问
如何根据用户的角色或能力限制对特定 Wordpress 页面的访问?我知道有各种插件可以实现这一点,我在谷歌搜索时发现了一些非常陈旧的解决方案。
我相信现在是时候拥有一个有效的最新解决方案了。
php - 根据帖子的年龄限制用户编辑帖子
在 Wordpress 中,如何限制用户(基于Capabilities)在自定义时间后编辑他们发布的帖子。
例如,可以publish_posts
(作者)的用户不能编辑超过 3 天的帖子,而可以moderate_comments
(编辑)的用户不能编辑超过 20 天的帖子。显然,管理员可以随时编辑。
这样的事情怎么可能?
.net - 如果唯一的网络使用是用于 Windows 商店,是否有必要声明“互联网客户端”功能?
如果windows store 应用程序不访问网络,除了查询windows store 是否已购买功能外,是否需要声明'internet client' 能力?
我想避免声明我不需要的功能。此外,它将删除应用程序引用隐私政策的要求。(因为即使我们收集了数据也无法传输,所以没有多大意义。)
cakephp - CakePHP: managing user capabilities in wordpress way
I Googled for this for over 3 hours but didn't find anything helpful. Is there any CakePHP
plugin that allows managing user roles and capabilities without building ACL
, the wordpress way?
Why built-in CakePHP ACL does not meet my needs:
- it's kind of overkill for not very big applications
- Keep updating ACOS can be pain.
- you can't use version control to track roles and capabilities changes
What I would like new plugin to be:
- in
AppController
or somewhere else you can define array of supplied capabilities. I do not need them to be dynamic, though in wordpress that was done even without database. I don't even think capabilities should match controller methods (but maybe I am not right there) - when initializing roles, you can set which capabilities are true for that role
- in view file, you can check if current user has the capability, f.e., to edit slug field, and if yes, show this field.
I am really not an authentication specialist and may sound like an ordinary wordpress fan, but to my point of view wordpress system of user management is really efficient and could be implemented in CakePHP.
windows-8 - 查询 Winrt App 的触控功能
对于 WinRT 应用,有没有办法查询运行该应用的设备是否支持触控?我问是因为我有一个游戏的屏幕控制,如果你没有触摸就不需要。
windows-store-apps - 在 Windows 应用商店应用中捕获无声视频
我想编写一个可以捕获视频(没有任何声音)和拍照的 Windows 应用商店应用程序。想象一下数码相机:您可以在按下拍照按钮之前在设备屏幕上预览图片。
我现在面临的问题是,Windows.Media.Capture
命名空间只有用于捕获带有声音的视频的对象的类 ( CameraCaptureUI
, MediaCapture
)。我对对象的功能并不感到困扰,但事实上我必须在应用程序的清单中包含麦克风功能,并且应用程序使用它没有意义。我需要一个只使用网络摄像头功能的类。
有任何想法吗?
wordpress - WordPress 创建自定义功能
我正在开发一个购物车插件,并计划为客户创建一个新的用户角色。
我的问题是如何创建自定义功能,以便我可以将这些自定义功能分配给新的用户角色,这个答案提供了一种创建新功能的方法,但它只是原始功能的新名称。
谁能解释如何创建一个控制一些自定义功能的全新功能?