Blog

The new PodsData class that has been tied…

The new PodsData class that has been tied to PodsUI has morphed into a general-purpose DB Abstraction layer. Here are some functions I’m working on for it: query (pods_query mapped to this) insert update delete reorder select build (handles sql building for search, pagination, and sorting) table_create table_alter table_truncate table_drop The Pods() and PodsAPI() classes …

Read more

So I finally tackled the thing holding me…

So I finally tackled the thing holding me back – how to handle all of the options that PodsUI offers. Part of it is streamlining the validation process, which I built a utility class to do just that: PodsArray – http://code.google.com/p/wp-pods/source/browse/branches/2.0/classes/PodsArray.php This class takes an object or array and gives it some simple functionality to …

Read more

Just split up PodsUI into two classes the…

Just split up PodsUI into two classes, the new class is PodsUIData which handles some of the data processing for pagination / search / sorting so it’s now decoupled from the UI which really helps for organizational purposes. Still figuring out how best to handle all of the options in an efficient way. There’s a …

Read more